Forum Discussion
Anonymous
5 years agoNot applicable
Help with % measure per category
Hi I need some help in creating a measure that shows % of disputes over total number of calls for each category. So for XP = 8531/17k, CIP = 2922/10.8k Could someone assist, thanks very much! ...
- 5 years ago
Anonymous in this case, you can create a measure like below
Measure =var c_bus = COUNTAX('Table','Table'[Business])var m_bus = CALCULATE(COUNTX('Table','Table'[Status]),'Table'[Status]="Dispute")returnm_bus/c_busbelow is the output that you are looking for.thanks
negi007
Community Champion
5 years agoAnonymous in this case, you can create a measure like below
Measure =
var c_bus = COUNTAX('Table','Table'[Business])
var m_bus = CALCULATE(COUNTX('Table','Table'[Status]),'Table'[Status]="Dispute")
return
m_bus/c_bus
below is the output that you are looking for.
thanks
Anonymous
5 years agoNot applicable
Thanks so much!!!!