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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Vanessa250919
Helper IV
Helper IV

Max in measure

Hello All,

I have 6 measures in DAX, and I'm trying to write a measure that will show which of the measures below has the highest result.

In the measures, there are numbers. Here are the 6 measures, can you help me?



Green NB
Grey NB
Orange NB
Yellow NB
Red NB
High Red NB

1 ACCEPTED SOLUTION
v-jialongy-msft
Community Support
Community Support

Hi

 

Try using the dax below to get the maximum value for each row

 

MaxValue11 = 
MAXX(
    UNION(
        SUMMARIZE('Table', "Value", 'Table'[Green]),
        SUMMARIZE('Table', "Value", 'Table'[Grey]),
        SUMMARIZE('Table', "Value", 'Table'[Orange])
    ),
    [Value]
)

 

This is the result you want

vjialongymsft_0-1707703932457.png

 

 

Since there is no function in DAX that can be used to get the column names in a table, it is not possible to use DAX to change the color of a value based on the column where the maximum value is located.

 

 

 

 

 

 

Best Regards,

Jayleny

 

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

2 REPLIES 2
v-jialongy-msft
Community Support
Community Support

Hi

 

Try using the dax below to get the maximum value for each row

 

MaxValue11 = 
MAXX(
    UNION(
        SUMMARIZE('Table', "Value", 'Table'[Green]),
        SUMMARIZE('Table', "Value", 'Table'[Grey]),
        SUMMARIZE('Table', "Value", 'Table'[Orange])
    ),
    [Value]
)

 

This is the result you want

vjialongymsft_0-1707703932457.png

 

 

Since there is no function in DAX that can be used to get the column names in a table, it is not possible to use DAX to change the color of a value based on the column where the maximum value is located.

 

 

 

 

 

 

Best Regards,

Jayleny

 

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

Vanessa250919
Helper IV
Helper IV

Vanessa250919_0-1707494749507.png


I need to have an other column : If the max number is Green, I need to see Green 

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Fabric Monthly Update - May 2024

Check out the May 2024 Fabric update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors