I have a dataset which has alarm IDs, the time, date, area and type. I would like a count of how many alarms escalated from low to high and how many didn't.
The expected output from this data set is:
I have created multiple measures which show whether the alarm escalated (we'll call those all 'escalated') but these all only work when the table columns are ID numbers and escalated. All escalated measures have resulted in count of alarms that did not escalate = 2. I think this is because ID number 001 has a low and high result so both are counted for 001.
Any ideas would be really applicated!
Achieved by creating a new table using
Alarm escalation = SUMMARIZE( Sheet1,Sheet1[Area],"Escalation", DISTINCTCOUNT( Sheet1[Alarm type] ) )
This allowed me to see a count of 2 of any area that had more than one alarm type and therefore escalation.