IF Contains Statement with 2 conditions
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
hi,
i am trying to use data from two different columns to create a new column but not sure if using IF "Contain" is the best way. Can also use = but i think the issue i'm having is with reading the values in both columns.
Here is what i have so far:
IF CONTAINS ([Address City],'Atlanta') and and ([Org Level] = "CCB" THEN "Atlanta-CCB"
However, data preview is showing as Null.
Thanks
- Labels:
- Datasets
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @dattina2287
Please find the below,
IF CONTAINS([Address City],'Atlanta') and [Org Level] = "CCB"
THEN "Atlanta-CCB"
ELSE Please fill your
ENDIF
Many thanks
Shanker V
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I think in general that should work. You have two "and"s in there, and a missing closing bracket, and a missing else clause. But other than that I would just check that [Org Level] doesn't have any leading or trailing spaces.
Feel free to share some dummy data with the workflow so we can troubleshoot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @dattina2287. Did you manage to solve your issue?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@dattina2287
Actually, Solution by @ShankerV should work.
IF CONTAINS([Address City],'Atlanta') and [Org Level] = "CCB"
THEN "Atlanta-CCB"
ELSE Please fill your
ENDIF
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @dattina2287
If you are considering multiple records with different options, below is the formula as an example.
 
regards,
Kamen
