Forum Discussion
RAHULBANDI
Helper II
3 years ago***Gauge Chart***
Hi Team, I have Following Data-set Hospitals Abn Group CCAD NMC Group Imperial College Prime Healthcare I have inserted this Hospitals data in to slicers My requirement is when i select...
- 3 years ago
Hi, RAHULBANDI ;
Try it.
Measure = DIVIDE( COUNT(Test[Hospitals]),CALCULATE(COUNT(Test[Hospitals]),ALL(Test)))Then change the type of this meausre.
The final show:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Greg_Deckler
Community Champion
3 years agoRAHULBANDI Try a measure like this:
Measure =
DIVIDE(
COUNTROWS(SUMMARIZE('Table',[Hospitals])),
COUNTROWS(SUMMARIZE(ALL('Table'),[Hospitals]))
)