In case you missed the announcement: The Alteryx One Fall Release is here! Learn more about the new features and capabilities
here
ACT NOW: The Alteryx team will be retiring support for Community account recovery and Community email-change requests Early 2026. Make sure to check your account preferences in my.alteryx.com to make sure you have filled out your security questions.
Learn more here
Hi 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.
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.
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.