Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Apologies if this is overly simple but I am new to DAX. I am trying to calculate an escalation percentage as defined as (# of Escalated 2s + # of Escalated 3s) / (# of Assigned). The data looks like:
Event Column
Assigned
Escalated 2
Assigned
Escalated 3
Assigned
Assigned
For the above data, the escalation percentage should be 50%.
Thanks for your help
Solved! Go to Solution.
HI @jeffatkins79 ,
You can try to use following measure to calculate percent of 'escalated' and 'assigned'.
Measure = DIVIDE ( COUNTROWS ( FILTER ( ALLSELECTED ( Table1 ), SEARCH ( "Escalated", [Event Column], 1, -1 ) > 0 ) ), COUNTROWS ( FILTER ( ALLSELECTED ( Table1 ), [Event Column] = "Assigned" ) ) )
Regards,
Xiaoxin Sheng
HI @jeffatkins79 ,
You can try to use following measure to calculate percent of 'escalated' and 'assigned'.
Measure = DIVIDE ( COUNTROWS ( FILTER ( ALLSELECTED ( Table1 ), SEARCH ( "Escalated", [Event Column], 1, -1 ) > 0 ) ), COUNTROWS ( FILTER ( ALLSELECTED ( Table1 ), [Event Column] = "Assigned" ) ) )
Regards,
Xiaoxin Sheng
User | Count |
---|---|
64 | |
59 | |
47 | |
33 | |
32 |
User | Count |
---|---|
84 | |
75 | |
56 | |
50 | |
44 |