The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
We have an excel spreadsheet like the example below. I'm trying to figure out how I can count the responders by incidents. For example, how many total incidents did Bob respond to? (3 is the answer I'm looking for) I can easily count how many times he was the Primary responder.
Any advice would be appreciated thanks.
Incident # | Primary responder | Second Responder | Third Responder |
Incident 1 | Bob | Allen | null |
Incident 2 | Allen | null | null |
Incident 3 | Joe | Bob | Beth |
Incident 4 | Beth | Sally | Bob |
Solved! Go to Solution.
Hi @Sean2 ,
You can "unpivot" columns in "edit queries".
Use "responder" as the filter, and create the following two measures.
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Sean2 ,
You can "unpivot" columns in "edit queries".
Use "responder" as the filter, and create the following two measures.
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
With this formula:
Ah, you want my multi-column aggregations quick measure:
User | Count |
---|---|
80 | |
78 | |
37 | |
34 | |
31 |
User | Count |
---|---|
93 | |
81 | |
60 | |
49 | |
49 |