Forum Discussion
Continuing Ranking on a New Page
- 4 years ago
You can use a measure like this one and adapt it for each page to the rank range of interest.
Top25 Sales =
VAR vThisRank =
RANKX( ALL( Project[Project] ), [SalesMeasure],, DESC )
RETURN
IF( vThisRank >= 1 && vThisRank <= 25, [SalesMeasure] )Pat
You can use a measure like this one and adapt it for each page to the rank range of interest.
Top25 Sales =
VAR vThisRank =
RANKX( ALL( Project[Project] ), [SalesMeasure],, DESC )
RETURN
IF( vThisRank >= 1 && vThisRank <= 25, [SalesMeasure] )
Pat
Pat-
Thank you so much -- about to give it a try & will keep you posted!
- AaronGlenn104 years agoHelper III
I now have my top 100 list across four (4) seperate pages, but curious to know if there's a measure that will total the columns across the Top 100 - insert a 'total summary' in a 5th page.