Forum Discussion
Anonymous
8 years agoNot applicable
Top 3 Projects by Month
I have a table of projects and I would like to do a table where it only shows the 3 largers projects by dollor for that given month. in the below example I want a measure that only shows me the pr...
- 8 years ago
Hi@ benkilloy
After my research, you could do these like below:
Step 1:
Add a Rank measure
Rank = RANKX(ALLSELECTED(Table2[Itme]),CALCULATE(SUM(Table2[Qty])))
Step 2:
Select matrix and drag [Rank] into visual level filters
And set rank filter like below
Result:
Best Regards,
Lin
v-lili6-msft
8 years agoCommunity Support
Hi@ benkilloy
After my research, you could do these like below:
Step 1:
Add a Rank measure
Rank = RANKX(ALLSELECTED(Table2[Itme]),CALCULATE(SUM(Table2[Qty])))
Step 2:
Select matrix and drag [Rank] into visual level filters
And set rank filter like below
Result:
Best Regards,
Lin
Anonymous
8 years agoNot applicable
Awesome, thank you worked perfect