You need to sign in to do that
Don't have an account?
Terry_0101
Using EQUALS instead of CONTAINS
Hi Hi,
If I use CONTAINS, then the letters kent are mixed up with the United Kingdom's Kent state/province.
How to use equals Kentucky instead of contains?
IF(CONTAINS("Kentucky", State )
If I use CONTAINS, then the letters kent are mixed up with the United Kingdom's Kent state/province.
How to use equals Kentucky instead of contains?
IF(CONTAINS("Kentucky", State )
I assume that "State" in your IF condition is comma separated string, since if it is set of strings then there is no issue it will automatically check the full word. But it might be comma separated string.
Two option is there
(1) You can convert your comma separated string to set of string like below
(2) You can check comma with state name in IF condition
But before that you need to append comma in very first and last character like
Thanks & Cheers,
Jigar(pateljb90@gmail.com)
IF(OR(ISBLANK(State)),
"",
IF(CONTAINS("Kentucky:West Virginia:Pennsylvania:Virginia:", State ),
"Eastern",
""))