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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Krispi
New Member

RANKX across all levels and avoiding blank values

I'm looking for a way to rank all values independend if that are on the first level or second level of my hierarchy.

 

This is the hierarchy:

AreaCountry
AuNZAustralia
AuNZNew Zealand 
CanadaCanada
EuropeBelgium
EuropeGermany
EuropeFrance
UKUK

 

Some levels in my hierarchy have blank values:

 ValueRank
AuNZ65.1%2
  Australia<blank> 
  New Zealand<blank> 
Canada70.1%1
  Canada<blank> 
Europe<blank> 
  Belgium60.8%3
  Germany25.7%5
  France10.0%6
UK30.0%4
  UK<blank> 

 

As you can see, values are blank for all countries, except for the countries in Europe. Also for Europe itself the value is blank. 

I created this measure to get the right values at the right place:

 

Value =
    SWITCH(
        TRUE(),
        (SELECTEDVALUE(DimSummary[Area]) IN {"Europe"} && ISINSCOPE(DimSummary[Country]))
        ||
        (NOT(SELECTEDVALUE(DimSummary[Area]) IN {"Europe"}) && ISINSCOPE(DimSummary[Area]) && NOT(ISINSCOPE(DimSummary[Country]))),
        CALCULATE(DimLargeTable[Value],
            TREATAS(VALUES(DimSummary[Area]), DimLargeTable[Area]),
            TREATAS(VALUES(DimSummary[County]), DimLargeTable[Country])
    ))
 
Is this possible? I looked around I didn't see anybody doing RANKX across the complete hierarchy.
2 REPLIES 2
Krispi
New Member

Hi @v-tangjie-msft 

 

Thanks for sharing these examples! Problem is that all these rank at each level of the hierarchy and not across the levels of the hierarchy (or perhaps I missed that). 

 

I'll prepare an example PIBX. I cannot share the current version.

 

 

Thanks

Kris

v-tangjie-msft
Community Support
Community Support

Hi @Krispi ,

 

You can refer to the following posts that may be helpful to you:

Rankx in Matrix Hierarchy - Microsoft Fabric Community

 Rankx Multiple levels to Hierarchy - Microsoft Fabric Community

Power BI Ranking In Hierarchical Form (enterprisedna.co)

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

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

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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