Alteryx Designer Desktop Discussions

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

Email Query

Jules22
5 - Atom

I Have a workflow that sends email to one column. I need to send emails to next column when the first column is blank.

1 REPLY 1
alexnajm
17 - Castor
17 - Castor

Use a Formula beforehand to fill in that first column with the second column when the first is empty! Something like:

 

IF IsEmpty([Email1]) THEN [Email2] ELSE [Email1] ENDIF

Labels