SOLVED
Filter Tool
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
ashiques
8 - Asteroid
‎11-17-2014
02:37 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Solved! Go to Solution.
Labels:
- Labels:
- Preparation
1 REPLY 1
ChadM
Alteryx Alumni (Retired)
‎11-17-2014
11:21 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi Ashique,
Try the following:
IF left([Name], 7) == "A_Fract"
THEN "A_Fract"
ELSEIF left([Name], 11) == "B_Analytics"
THEN "A_Fract"
ELSE "No Value"
ENDIF
With the If/Then statement, you are looking for two values, if the first isn't found, make the second value part of your ELSEIF statement. Finally, if neither of the two values are found, use the ELSE to signify the alternative.
Thanks!
Try the following:
IF left([Name], 7) == "A_Fract"
THEN "A_Fract"
ELSEIF left([Name], 11) == "B_Analytics"
THEN "A_Fract"
ELSE "No Value"
ENDIF
With the If/Then statement, you are looking for two values, if the first isn't found, make the second value part of your ELSEIF statement. Finally, if neither of the two values are found, use the ELSE to signify the alternative.
Thanks!

When i used this Formula
IF left([Name], 7) == "A_Fract" THEN left([Name], 7) == "A_Fract" ELSE left([Name], 11) == "B_Analytics" ENDIF
I have to make check on two Words.I want only one value from Field but i got both the values of "A_Fract" and "B_Analytics". How can i get only one value.
Like first i find "A_Fract" then if its not found then find "B_Analytics". I didnt get one value.