Forum Discussion
zenbabasha33
2 years agoRegular Visitor
DAX Rank Function is not working when I choose multiple dates from the filter
hi Team, I have two filter Date and Region. when i choose one date it works we and as expected but if I do multiple date from the filter it isnot working. This is the DAX i am using below. Ra...
- Anonymous2 years ago
Hi zenbabasha33
Source DataRank Function
Select any date from the slicer, the rank will adjust within itself
aduguid
Memorable Member
2 years agoTry this measure. If you want to rank across all selected dates without splitting by date, you can ignore the date filter in the ranking context.
Rank =
RANKX(
ALLSELECTED('Royalty'[Region]),
'Royalty'[Adjusted Gross Revenue],
,
DESC,
Skip
)
zenbabasha33
2 years agoRegular Visitor
Thank you but I alreaddy Tried this one