The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I've been trying to display dynamic TopN projects ranking by Yearly Plan Amount and this little bug has been bothering me. When I choose top3, I expect both Project P2 and P9 to be displayed as they're tie for 3rd place but only P9 shows up in the graphical chart.
I tried pulling all the numbers out in matrix and find that at year granularity, the ranking is correct. Both P2 and P9 are at rank 3. However, at month granularity, P2 drops to rank 5. I don't understand why that happens as when I concat all the values supposedly used for ranking, they're the same at both granularity levels. (as seen in the pic below)
When I choose Top5, everything is correct and we see that P2 has the exact same Yearly Plan Amount as P9, which is 0.11.
I've been going at this for days so any help would be much appreciated.
Here's the pbix.
https://www.dropbox.com/s/grjw80y52o0kaid/Wrong%20ranking%20in%20month%20granularity.pbix?dl=0
Solved! Go to Solution.
Hi @ChocoGanache
Here is your sample file with the solution https://we.tl/t-CgcPX7WJq9
Plan Yearly Amount =
CALCULATE (
SUM ( Plan[Amount] ),
REMOVEFILTERS ( ),
VALUES ( Project[Project] )
)
Ranking =
RANKX (
ALLSELECTED ( Project[Project] ),
[Plan Yearly Amount]
)
Hi @ChocoGanache
Here is your sample file with the solution https://we.tl/t-CgcPX7WJq9
Plan Yearly Amount =
CALCULATE (
SUM ( Plan[Amount] ),
REMOVEFILTERS ( ),
VALUES ( Project[Project] )
)
Ranking =
RANKX (
ALLSELECTED ( Project[Project] ),
[Plan Yearly Amount]
)
Thank you so much! It really does work! Unfortunately, when I applied your measure to my actual report (which have more tables and slicers), they do not work.
Can you explain to me what I did wrong? I still don't understand why your code works and mine doesn't.
1. Isn't CALCULATE(SUM(.....), xxx, yyy) calculate the same way whether you put it in a measure (like Plan Yearly Amount in this case) or type it plainly like in my initial Ranking code?
2. how come for Plan Yearly Amount, REMOVEFILTERS('DATE'[Month Number]) doesn't work?
3. How should I go about debugging my actual report? Pulling numbers into matrix doesn't provide any insight to where the problem is.
Thank you so much T-T
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
108 | |
82 | |
77 | |
46 | |
39 |
User | Count |
---|---|
137 | |
108 | |
69 | |
64 | |
53 |