Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Currently, I have the below expression used in deciding the background colour of the dimension in the straight table.
=pick(match(Field2,'NY','LD,','JP'),yellow(),Blue(),green())
I want to add additional below condition to the above.
if(field3 = 'Closed',black())
Please see the attached qvw
Please help.
Maybe something like this:
if(field3 = 'Closed',black(),
pick(match(Field2,'NY','LD,','JP'),yellow(),Blue(),green()))
- Marcus
Maybe something like this:
if(field3 = 'Closed',black(),
pick(match(Field2,'NY','LD,','JP'),yellow(),Blue(),green()))
- Marcus
Thank you so much!