Forum Discussion
DHB
7 years agoHelper V
Card Percentages not Changing
I'm using 2 cards in my dashboard. One shows count a of records and this number changes when I use filters. The other card shows the value as a percentage of the records but does not change when I use filters and stays at 100%. I can't find any way to make this second card change according to filters.
Any tips?
Thank you.
DHB
DHB,
You may try the measure below.
Measure = DIVIDE ( COUNT ( Table1[Column1] ), CALCULATE ( COUNT ( Table1[Column1] ), ALL ( Table1 ) ) )
2 Replies
- v-chuncz-msftCommunity Support
DHB,
You may try the measure below.
Measure = DIVIDE ( COUNT ( Table1[Column1] ), CALCULATE ( COUNT ( Table1[Column1] ), ALL ( Table1 ) ) )- DHBHelper V
That's great, works perfectly. Thank you.