Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
I want to change the below expression, but it is not working as expected.
From-->
if(field3 = 'Closed', black(),
pick(match(Field2,'NY','LD,','JP'),yellow(),Blue(),green()))
To-->
if(field3 = 'Closed' AND if(Field2 = 'NY',black(),
pick(match(Field2,'LD,','JP'),yellow(),Blue(),green()))
Please help.
Hi,
Try this.
if(field3 = 'Closed' AND Field2 = 'NY',black(),
pick(match(Field2,'LD,','JP'),yellow(),Blue(),green())
Hi,
Try this.
if(field3 = 'Closed' AND Field2 = 'NY',black(),
pick(match(Field2,'LD,','JP'),yellow(),Blue(),green())
Thanks for your help