Forum Discussion
Measure for Percentage difference
- 4 years ago
Zaynah16 I'm not sure what do you mean by 'percentage total score' 🙂
Anyway I took a guess, maybe this will anyway show you the way:_Measure = VAR _pct_on_track = DIVIDE( CALCULATE( SUM(RAG status[Score]), RAG status[Status] = "On Track" ), CALCULATE( SUM(RAG status[Score]), REMOVEFILTERS(RAG status[Status]) ) ) VAR _pct_at_risk = DIVIDE( CALCULATE( SUM(RAG status[Score]), RAG status[Status] = "At Risk" ), CALCULATE( SUM(RAG status[Score]), REMOVEFILTERS(RAG status[Status]) ) ) RETURN _pct_on_track - _pct_at_risk
Sample data - i need a dax calc/ measure to calculate the percentage score.
eg.
289 items
79 are on track
60 are at risk
I need a percentage total score of the on track minus at risk
| PILLAR | Business Unit | Section | Sub Section | Item | Status | Score |
| On track | 1 | |||||
| On track | 1 | |||||
| On track | 1 | |||||
| Lagging | 2 | |||||
| Lagging | 2 | |||||
| Lagging | 2 | |||||
| Lagging | 2 | |||||
| No data | 0 | |||||
| No data | 0 | |||||
| No data | 0 | |||||
| No data | 0 | |||||
| At risk | 3 | |||||
| At risk | 3 | |||||
| At risk | 3 | |||||
| At risk | 3 | |||||
| At risk | 3 | |||||
| At risk | 3 |
- SpartaBI4 years agoCommunity Champion
Zaynah16 I'm not sure what do you mean by 'percentage total score' 🙂
Anyway I took a guess, maybe this will anyway show you the way:_Measure = VAR _pct_on_track = DIVIDE( CALCULATE( SUM(RAG status[Score]), RAG status[Status] = "On Track" ), CALCULATE( SUM(RAG status[Score]), REMOVEFILTERS(RAG status[Status]) ) ) VAR _pct_at_risk = DIVIDE( CALCULATE( SUM(RAG status[Score]), RAG status[Status] = "At Risk" ), CALCULATE( SUM(RAG status[Score]), REMOVEFILTERS(RAG status[Status]) ) ) RETURN _pct_on_track - _pct_at_risk- Zaynah164 years agoHelper I
Thank you! This worked!
- SpartaBI4 years agoCommunity Champion
Zaynah16 my pleasure 🙂 Will appreciate your Kudos 🙂
P.S. check out my showcase report - got some high level stuff there 🙂
https://community.powerbi.com/t5/Data-Stories-Gallery/SpartaBI-Feat-Contoso-100K/td-p/2449543
Give it a thumbs up over there if you liked it 🙂