Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
I have this measure:
Solved! Go to Solution.
Hi @Fusilier - Yes, it is possible to use RANKX to rank the result of your %SBC Count Agree measure based.
create below calculation:
Rank Agree % =
RANKX(
ALL('Raw Data'[Question]), // Table over which to rank (all questions)
[%SBC Count Agree], // Expression to rank by (the percentage measure)
, // Leave empty for default
DESC, // Rank in descending order (highest percentage first)
DENSE // Use DENSE ranking to avoid gaps in ranks
)
you should be able to rank your questions by the percentage of "Agree" responses as you want.
Hope this helps.
Proud to be a Super User! | |
Hi @Fusilier - Yes, it is possible to use RANKX to rank the result of your %SBC Count Agree measure based.
create below calculation:
Rank Agree % =
RANKX(
ALL('Raw Data'[Question]), // Table over which to rank (all questions)
[%SBC Count Agree], // Expression to rank by (the percentage measure)
, // Leave empty for default
DESC, // Rank in descending order (highest percentage first)
DENSE // Use DENSE ranking to avoid gaps in ranks
)
you should be able to rank your questions by the percentage of "Agree" responses as you want.
Hope this helps.
Proud to be a Super User! | |
Got it working!
Thank you very much for your help.
Thank you for your help.
I've tried the measure in a table but it's returning 1 for every line:
I'll have another look.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
76 | |
61 | |
37 | |
33 |
User | Count |
---|---|
99 | |
56 | |
51 | |
42 | |
40 |