Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

IF Formula with Contains

insomned
8 - Asteroid

Hello, 

 

Is it possible to write an IF formula with "contains", so if the column X contains "Hello" output "Yes" in the new column? 

 

Thanks! 

 

 

2 REPLIES 2
Emil_Kos
17 - Castor
17 - Castor

Hi @insomned,

 

This is the formula that you are looking for:

 

IIF(Contains([Column X], 'Hello'), 'Yes', 'No’)

insomned
8 - Asteroid

Thank you!!

Labels