Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
Solved! Go to Solution.
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
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.
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
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.
I need to have an other column : If the max number is Green, I need to see Green
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
11 | |
10 | |
10 | |
10 |
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
8 |