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!
Solved! Go to Solution.
Hi @insomned,
This is the formula that you are looking for:
IIF(Contains([Column X], 'Hello'), 'Yes', 'No’)
Thank you!!