Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
Hope you can help me.
I have a table and I would like to rank each row grouped by country and with 2 conditions. The conditions are as follows:
Different dates may reflect different ranking.
The final result should be like this:
Can you please help me?
Thanks in advance.
Solved! Go to Solution.
Hi,
I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.
It is for creating a measure.
Rank measure: =
IF (
HASONEVALUE ( Country[Country] ),
CALCULATE (
COUNTROWS ( Data ),
WINDOW (
1,
ABS,
0,
REL,
SUMMARIZE (
ALL ( Data ),
Country[Country],
'Product'[Product],
Data[Qty],
Data[Sales Amount]
),
ORDERBY ( Data[Qty], DESC, Data[Sales Amount], DESC ),
KEEP,
PARTITIONBY ( Country[Country] )
)
)
)
Hi,
I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.
It is for creating a measure.
Rank measure: =
IF (
HASONEVALUE ( Country[Country] ),
CALCULATE (
COUNTROWS ( Data ),
WINDOW (
1,
ABS,
0,
REL,
SUMMARIZE (
ALL ( Data ),
Country[Country],
'Product'[Product],
Data[Qty],
Data[Sales Amount]
),
ORDERBY ( Data[Qty], DESC, Data[Sales Amount], DESC ),
KEEP,
PARTITIONBY ( Country[Country] )
)
)
)
Hello @Jihwan_Kim ,
Measure is not working when I select my table.
I only have a single table, should it worl the same way?
Rank measure: =
IF (
HASONEVALUE ( 'Data'[Country] ),
CALCULATE (
COUNTROWS ( 'Data' ),
WINDOW (
1,
ABS,
0,
REL,
SUMMARIZE (
ALL ( 'Data' ),
'Data'[Country],
'Data'[Product],
'Data'[Qty],
'Data'[Sales Amount]
),
ORDERBY ( Data[Qty], DESC, Data[Sales Amount], DESC ),
KEEP,
PARTITIONBY ( 'Data'[Country] )
)
)
)
Thank you!
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |