Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm getting an error with the following formula. Can you please help ?
=if(Region=(or('Americas','NA')),rgb(45,150,255),rgb(135,137,139))
thks,dani
=if(Region='Americas' or Region ='NA',rgb(45,150,255),rgb(135,137,139))
Hi Dani
Try this:
=if(WildMatch(Region,'Americas',NA'),rgb(45,150,255),rgb(135,137,139))
Hi,
check reply given by
It should work fine.