Forum Discussion
amaiaita
3 years agoRegular Visitor
Multiple Conditions for Conditional Background Fill of Cells
I am trying to get a column in my table to have a condition that if the value in it is the string "+ve" then the background is blue, and if the string is the word "-ve" then it is filled with Silver....
- 3 years ago
So you would achieve this by nesting your IIF functions
=IIF(Fields!ID2017.Value="-ve","Silver", IIF(Fields!ID2017.Value="+ve","Blue","No Color") )