Forum Discussion
sthandiwe
5 years agoFrequent Visitor
Background colour formatting.
Hi All I have a dashboard where I need the background of a cell to reflect a certain colour depending on the contents of it. The rules are as follows. It works well mostly. But there are some...
PaulDBrown
Community Champion
5 years agoLet's assume you are using a measure for the Approval Status. You can create a measure for the conditional formatting like:
Condit. format =
SWITCH(TRUE(),
[Approval Status] = "Not Approved", 0,
Approval Status] = "Approved", 1,
2)
Now use this measure in the conditional formatting interface -select the measure in the "based on the field" option-