Forum Discussion
jcastr02
6 years agoPost Prodigy
Conditional Formatting - matrix row
Trying to set up a cond formatting to the highest number in each row, to be background color of dark grey. The values are not coming from any measure. I am doing % of row total of responses. See p...
v-lionel-msft
6 years agoCommunity Support
Hi jcastr02 ,
Create a measure like this:
Max_grey =
VAR x =
CALCULATE(
MAX(Sales[Sale 2013]),
ALLEXCEPT(
Sales,
Sales[Brand]
)
)
RETURN
IF(
MAX(Sales[Sale 2013]) = x,
"grey",
"white"
)
Then, do like this:
(The matrix in the picture is the effect I have achieved, I just repeat the operation again.)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
jcastr02
6 years agoPost Prodigy
v-lionel-msft seems it's only shading the first column.
Attached is the file - see 30 day feedback tab