Forum Discussion
Grouping in Rankx
Did you try viewing by [RunDate]? If you use [RunDate] in the table Rows (before [ReportName]), what does the ReportName ranking look like?
Another method - if you were to filter this table for a single date (via [RunDate]), what does the ranking look like?
Maybe I am unclear on how exactly you are hoping to "group" the report ranking.
My apologies if I was unclear before. If I select a date range, let's say last 30 days, I would expect to see the report names, # of times run, and then rank where rank 1 is the report run the most and vice versa.
So in the table screenshot before, the report run 112 times would have rank 1 and all of those reports are limited to the past 30 days.
- jmalone8 years ago
Resolver III
I see. In that case, you shouldn't need any special grouping, and maybe that's where the confusion is coming from.
You should be able to use the following measure:
Ranking =
RANKX (
ALL ( 'ReportStatistics'[ReportName] ),
CALCULATE ( COUNTROWS ( 'ReportStatistics' ) )
)To filter by date, use the [RunDate] field in a slicer. The slicer will allow you to select a date range, and the measure should adjust to rank according to that selection.