Forum Discussion
A_a_a
3 years agoHelper III
Matrix table - conditional formating comparing two measures
Hi All,
I have Matrix table with list of places by week.
Values are based on one measure.
Now I would like to highlight the cells that are lower than data ("Data" is measure too):
My conditional measure:
Conditional Formating =
SWITCH(
TRUE(),
[Measure 1] < [Data], "red",
""
)
But the output seems to be correct only for the first column not for all... what kind of filter or condition shall I add to have the output by week.
Please help.
Thanks,
G.
A_a_a , Based on what I got.
The data measure should ignore week filter.
it should like
new data = calculate([Data], removefilters(Table[Week]) )
2 Replies
- amitchandakSuper User
A_a_a , Based on what I got.
The data measure should ignore week filter.
it should like
new data = calculate([Data], removefilters(Table[Week]) )
- A_a_aHelper III
Hi,
it is working now 🙂
Thank you for your help!
G.