Forum Discussion
adelimont
8 years agoRegular Visitor
Rank top 10 data within each month
I'm new to Power BI and DAX and I haven't been able to find a solution to my problem. I have a table organized with Job #, Month, Data. I would like to be able to add a column to rank the data wi...
- 8 years ago
HI adelimont
Try this column
Rank Revenue by Month = RANKX ( FILTER ( 'YTD', 'YTD'[Month] = EARLIER ( 'YTD'[Month] ) ), 'YTD'[Revenue], , DESC, DENSE )
Zubair_Muhammad
Community Champion
8 years agoHI adelimont
Try this column
Rank Revenue by Month =
RANKX (
FILTER ( 'YTD', 'YTD'[Month] = EARLIER ( 'YTD'[Month] ) ),
'YTD'[Revenue],
,
DESC,
DENSE
)- adelimont8 years agoRegular Visitor
Thank you Zubair_Muhammad and Phil_Seamark so much for the quick responses! This seems to be working!