The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Good.
I have a Ranking that works properly, created with the following measure:
I want to remove the 1 that appears in Red
Solved! Go to Solution.
Sorry for the delay.
Perfect, I got what I needed:
Greetings and thank you very much.
Hi @Syndicate_Admin ,
Please have a try.
Create a measure based on the [Ranking].
result =
VAR _b =
SUMMARIZE ( 'with', 'with'[IC], "aaa", 'with'[Ranking] )
RETURN
IF ( HASONEVALUE ( 'with'[IC] ), [Ranking], BLANK () )
Eventually this 1 will be blank.
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Sorry for the delay.
Perfect, I got what I needed:
Greetings and thank you very much.
Try using the RANK function instead of RANKX. It's more robust and handles total rows properly.
https://www.sqlbi.com/articles/introducing-the-rank-window-function-in-dax/
Proud to be a Super User!