Forum Discussion
Highlight the max value in a chart /visual
- 3 years ago
Hello, you may follow the dax measure below and put into the conditional formatting for the color MAX bar.
IF(
CALCULATE(MAX('Sales Amount'),ALL('Channel')) = 'Sales Amount',
"Red",
"Green"
)
Right click the sales at the values then choose Conditional Formatting and Font ColorAfter that choose Field Value and choose the Measure you just now created. It should show the color now.
Hope this can help you.
Hello, you may follow the dax measure below and put into the conditional formatting for the color MAX bar.
IF(
CALCULATE(MAX('Sales Amount'),ALL('Channel')) = 'Sales Amount',
"Red",
"Green"
)
Right click the sales at the values then choose Conditional Formatting and Font Color
After that choose Field Value and choose the Measure you just now created. It should show the color now.
Hope this can help you.