Forum Discussion
Romani
Helper II
2 years agoTOP Achiever Analysis
I have an issue I couldn't solve because I have negative values in my data, and the DAX below cannot rank it. For example, when ranking the ROS KPI and choosing the top 5, it shows only 4. I don't kn...
Romani
Helper II
2 years agoWell received.
However, the ranking slicer is not affecting the visual as expected. The client has multiple ROS values spanning two or three years, and I also have a slicer for the year.
When I apply your solution, it displays all the clients regardless of selecting the top 3, 5, or 10. Additionally, when I choose a specific year, the output disappears.
BeaBF
Super User
2 years agoRomani ok, so modify your calculated column as:
ROS Rank_year =
VAR CurrentYear = 'Credit Benchmarking'[Year]
RETURN
RANKX(
FILTER(
ALL('Credit Benchmarking'),
'Credit Benchmarking'[Year] = CurrentYear
),
'Credit Benchmarking'[ROS.3],
,
DESC,
Dense
)
than substitute this in the tooltip and also in the Flag_TOP measure.
than substitute this in the tooltip and also in the Flag_TOP measure.
BBF