Forum Discussion
Showing Top 3 Counts in Matrix Table
Should have stated Top 3. Sorry
I got closer by using Body Grouping as Filter and using Top 3 by Total Count. Now I need a measure to use as a filter to show only the the Top 3 Body Grouping.
- bdehning2 years ago
Post Prodigy
- bdehning2 years ago
Post Prodigy
I am still stuck on this on trying trying not to show columns of Cause that are not included in the Top 3 per Body Grouping. In this case, I should not see Animal, Burn, Scald, , Exposure, Strike, Step on and Struckby
- Anonymous2 years agoNot applicable
Hi bdehning ,
After my testing, it is unlikely that you want to act on the measure in the filter to achieve your needs, I would suggest the following approach:
Create these measures:Count_Cause = COUNT('Table'[Cause Grouping])_RANK = RANKX(ALLEXCEPT('Table', 'Table'[Body Grouping]), [Count_Cause], , DESC, Skip)Output = IF( [_RANK] <= 3, [Count_Cause], BLANK() )Then put the measure Output into the Value of the Matrix:
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.