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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
AbbasG
Memorable Member
Memorable Member

Highlighting the max value (%) in a measure

Hello All,

I have data of suppliers with their regular prices and MSRP. I have created a measure that calculates % difference on regular prices with MSRP as a base value.

Now I want to highlight the row with the highest % difference. Please help me on how can calculate the same.

My data looks like below.

AbbasG_0-1639379045118.png

 

1 ACCEPTED SOLUTION

Hi @AbbasG ,

 

I modified my color measure. Please take a look.

Color = 
VAR _rank =
    RANKX (
        FILTER (
            ALLSELECTED ( 'All suppliers Combined Data' ),
            [Model#] = MAX ( 'All suppliers Combined Data'[Model#] )
        ),
        [Min of MSRP % difference from Min of Price],
        ,
        DESC,
        DENSE
    )
RETURN
    IF ( _rank = 1, "Green", "White" )

vstephenmsft_1-1640074883003.png

 

 

Best Regards,

Stephen Tao

 

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

9 REPLIES 9
amitchandak
Super User
Super User

@AbbasG ,

Highest Diff percent 

overall = calculate(maxx(summarize(allselected(Table) , Table[Supplier], Table[Model], " _1", [Diff]) , [_1] ) )


Max By supplier = calculate(maxx(summarize(Table , Table[Supplier], " _1", [Diff]) , [_1] ), removefilters(Table[Model] ))

Max By supplier = calculate(maxx(summarize(Table , Table[Model], " _1", [Diff]) , [_1] ), removefilters(Table[Supplier] ))

 

 

Use one of them as per need to compare and create color measure  

 

Color =  Switch( True() ,

[Diff %] = [Overall] , "Green" ,"White")

 

And use that in coditional formatting using field value option 

 

How to do conditional formatting by measure and apply it on pie?: https://youtu.be/RqBb5eBf_I4

Hello @amitchandak 

 

Thank you for the quick response. I have created the below measures. But it highlights all the value, can you please guide me what goes wrong?
Max By supplier = calculate(maxx(summarize(Table , Table[Supplier], " _1", [Diff]) , [_1] ), removefilters(Table[Model] ))

 

 

Color =  Switch( True() ,

[Diff %] = [Overall] , "Green" ,"White")







@AbbasG , I think I should not have removed model from summarize

 

Max By supplier = calculate(maxx(summarize(Table , Table[Supplier],Table[Model] " _1", [Diff]) , [_1] ), removefilters(Table[Model] ))

 

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

AbbasG
Memorable Member
Memorable Member

@amitchandak Awaiting your help, please😅

Hi @AbbasG ,

 

Is this the desired result you want?

vstephenmsft_0-1639990057972.png

Color measure is as follows.

Color =
VAR _rank =
    RANKX (
        FILTER (
            ALLSELECTED ( 'All suppliers Combined Data' ),
            [Supplier] = MAX ( 'All suppliers Combined Data'[Supplier] )
        ),
        [Min of MSRP % difference from Min of Price],
        ,
        DESC,
        DENSE
    )
RETURN
    IF ( _rank = 1, "Green", "White" )

 

 

Best Regards,

Stephen Tao

 

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

Hi @v-stephen-msft thank you for your response.

I want to highlight only the max % diff in each row. 



Hi @AbbasG ,

 

I modified my color measure. Please take a look.

Color = 
VAR _rank =
    RANKX (
        FILTER (
            ALLSELECTED ( 'All suppliers Combined Data' ),
            [Model#] = MAX ( 'All suppliers Combined Data'[Model#] )
        ),
        [Min of MSRP % difference from Min of Price],
        ,
        DESC,
        DENSE
    )
RETURN
    IF ( _rank = 1, "Green", "White" )

vstephenmsft_1-1640074883003.png

 

 

Best Regards,

Stephen Tao

 

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

 

@v-stephen-msft This helps. Thank you so much 🙂

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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