Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a table that when there is a "Y" under "entrapment" I want the cells to turn yellow and if there is a "Y' under Vandalism I want the cell to turn red. I know if I do this:
if(Entrapment='', white(), yellow())
It will work but how do I add the Vandalism part to this expression?
Thank you!
May be this
If(Entrapment = 'Y', Yellow(),
If(Vandalism = 'Y', Red(), White()))
May be this
If(Entrapment = 'Y', Yellow(),
If(Vandalism = 'Y', Red(), White()))
Perhaps this?
If(Entrapment='', White(), If(Vandalism='Y', Red(), Yellow()))
Thank you Sunny,
I see what I did wrong when i tried that.
Thank you
What was it, if you don't mind sharing that
I had it set like this:
if(Entrapment='', white(), yellow())
if(Vandalism='', red(), white()))
I needed to remove the first "White()", an oversight on my part.
Make sense, thanks for sharing