Advent of Code is now back for a limited time only! Complete as many challenges as you can to earn those badges you may have missed in December. Learn more about how to participate here!
Start Free Trial

Alteryx Designer Desktop Discussions

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

Email Query

Jules22
8 - Asteroid

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
18 - Pollux
18 - Pollux

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
Top Solution Authors