SOLVED
If then statement issue
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
garretwalters12
8 - Asteroid
‎12-05-2018
05:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Why when I use the following if then statement, I am receiving a "0" instead of "NY" when true?
Solved! Go to Solution.
Labels:
- Labels:
- Developer
2 REPLIES 2
17 - Castor
‎12-05-2018
05:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Change you if statement to this:
if Contains([Item-Txt1],'NYC' then 'NY' else {Item-Txt2] endif
16 - Nebula
‎12-05-2018
05:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Try taking out the [Item-Txt2]= between your then and 'NY' so that your formula just reads
if contains([Item-Txt1], 'NYC') then 'NY' else [Item-Txt2] endif
In Alteryx, you are specifying what column to change with the drop down at the top so you don't have to do it in your expression.
Hope this helps!
