This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
General Discussions has some can't miss conversations going on right now! From conversations about automation to sharing your favorite Alteryx memes, there's something for everyone. Make it part of your community routine!
I am trying to create an IF statement that
IF [Part Prefix] begins with IL**** then "Illustrations" ELSE Null() ENDIF
However, I am not sure how to have the IF Statement look for data that starts with one/two letters and ends with random numbers.
Solved! Go to Solution.
If startswith([part prefix],"Il") then "Illustrations " else null() endif
that should work
cheers,
mark