Forum Discussion
AnnaViteria
1 year agoNew Member
Conditional formatting for individual rows
Hi everyone, I am fairly new to the tool so i got stuck on what seems an easy problem. I have parking lots and products, so when i have a parking lot granularity i want it to be blue, but when i ex...
- 1 year ago
create a measure:
Measure =
IF(
NOT(ISINSCOPE('Table'[Products])),
"blue") // instead of Products place the name of the column you have in the second hierarchy position. Instead of "blue" the color you need.In the conditional formatting section make sure to apply to Values and Totals and not only Totals or Values.
olgad
1 year agoResident Rockstar
create a measure:
Measure =
IF(
NOT(ISINSCOPE('Table'[Products])),
"blue") // instead of Products place the name of the column you have in the second hierarchy position. Instead of "blue" the color you need.
In the conditional formatting section make sure to apply to Values and Totals and not only Totals or Values.