Good day Team,
i am having an issue with trying to use TOPN through the filter pane. i need to filter on 2 columns
- Rating which needs to return the highest ratings
- Count of ratings which needs to sort highest to lowest.
The Dax i have used is
Rating =
MAXX(
VALUES(‘Observed Competency’[Competency Localized]),
MAX(‘Observed Competency’[Score])
)
Count of rating =
COUNTROWS(
FILTER(
‘Observed Competency’,
‘Observed Competency’[Score] = [Rating]
)
)
TOPN filter is as per below