Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
MandoMongo
Regular Visitor

NEED HELP: Calculated Measure Filter

New to Power BI so just learning but I'm trying to create a calculated measure to rank and return top 10 dependent on condition in another column.

 

Data example:

CountryResult
Tunisia1
Angola0
Morocco1
Spain1
Germany0
Denmark0
Tunisia1
Denmark1
Morocco0

 

I want to filter out all '0' cols, then return each country aggregate, then ranked. e.g.

Tunisia - 40

Spain   - 10

etc.

 

I amn't grasping the flow in DAX at all yet. 

 

I've tried a few things including SUM(RANK(Table[col], ...not sure how to finish that

 

Top 10 = 

VAR Max = MAXX(FILTER(ALL('table'), 'table'[Country] = SELECTEDVALUE('table'[Results])),'table'[Results])...
 
I'm at a complete loss and would appreciate an explanation of how to approach the breakdown of this in DAX
 
This seems close but I need to breakdown further, it just returns the number of distinct countries, but I don't know how to apply row iterator like COUNTX, COUNTROWS etc to get a sum over distinct countries 
 
TOP 10 =
CALCULATE(
    DISTINCTCOUNT('table'[Country]),
    'table'[Result] = 1
)
1 ACCEPTED SOLUTION
v-zhouwen-msft
Community Support
Community Support

Hi @MandoMongo ,

The Table data is shown below:

vzhouwenmsft_0-1713317917516.png

Please follow these steps:
1. Use the following DAX expression to create a table

 

Table 2 = SUMMARIZE(FILTER('Table','Table'[Result] <> 0),'Table'[Country],"Count",COUNT('Table'[Result]))

 

2.Use the following DAX expression to create a column in 'Table2'

 

Rank = RANKX('Table 2','Table 2'[Count],,DESC,Dense) 

 

3.Final output

vzhouwenmsft_1-1713318011774.png

 

SUMMARIZE function (DAX) - DAX | Microsoft Learn

RANKX function (DAX) - DAX | Microsoft Learn

 

Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-zhouwen-msft
Community Support
Community Support

Hi @MandoMongo ,

The Table data is shown below:

vzhouwenmsft_0-1713317917516.png

Please follow these steps:
1. Use the following DAX expression to create a table

 

Table 2 = SUMMARIZE(FILTER('Table','Table'[Result] <> 0),'Table'[Country],"Count",COUNT('Table'[Result]))

 

2.Use the following DAX expression to create a column in 'Table2'

 

Rank = RANKX('Table 2','Table 2'[Count],,DESC,Dense) 

 

3.Final output

vzhouwenmsft_1-1713318011774.png

 

SUMMARIZE function (DAX) - DAX | Microsoft Learn

RANKX function (DAX) - DAX | Microsoft Learn

 

Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.