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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Ranking Measure

Everyone, I need your help again. I am struggling with creating a measure to rank manufacturers withing a category. I am attaching the sample data and desired result, as well as data model screenshot.

 

"OOW / Direct" is a calculated column in the table "DATA". "Manufacturer" is a column in another table. As you can see below the context is changed by two filters - "Month" and "CC ID".

 

Any ideas?

 

Data Model.PNGSample Data.PNG

1 ACCEPTED SOLUTION

Can you use ISFILTERED?

Ranking = 
VAR OOW_DIR = VALUES ( Data[OOW / DIR] )
RETURN 
IF ( NOT ISBLANK ( [Sales Amount] ),
    IF ( ISFILTERED ( MANUFACTURER[MFGRID] ),
        CALCULATE( 
            RANKX ( 
                ALLSELECTED ( MANUFACTURER ), 
                [Sales Amount] ), 
            OOW_DIR
        ) 
    )
)

View solution in original post

4 REPLIES 4
jdbuchanan71
Super User
Super User

Hello @Anonymous 

I uploaded my sample .pbix file here for you to look at.  MFR_Ranking.pbix

Give this measure a try:

Ranking = 
VAR OOW_DIR = VALUES ( Data[OOW / DIR] )
RETURN 
IF ( NOT ISBLANK ( [Sales Amount] ),
    IF ( ISINSCOPE ( MANUFACTURER[MFGRID] ),
        CALCULATE( 
            RANKX ( 
                ALLSELECTED ( MANUFACTURER ), 
                [Sales Amount] ), 
            OOW_DIR
        ) 
    )
)
Anonymous
Not applicable

Thank you for such a quick reply.

Any chance to re-write the measure without using "ISINSCOPE" function?

I am limited to an older version of Power BI / DAX 😞

Long story

Can you use ISFILTERED?

Ranking = 
VAR OOW_DIR = VALUES ( Data[OOW / DIR] )
RETURN 
IF ( NOT ISBLANK ( [Sales Amount] ),
    IF ( ISFILTERED ( MANUFACTURER[MFGRID] ),
        CALCULATE( 
            RANKX ( 
                ALLSELECTED ( MANUFACTURER ), 
                [Sales Amount] ), 
            OOW_DIR
        ) 
    )
)
Anonymous
Not applicable

Yes, it works like a charm.

 

I checked the first solution at home too with an updated version of Power BI --> works!

 

Thank you again.

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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