Forum Discussion

AnnaViteria's avatar
AnnaViteria
New Member
1 year ago
Solved

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...
  • olgad's avatar
    1 year ago

    AnnaViteria

    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.