Alteryx Designer Desktop Discussions

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

Email Tool

Ayaanarjun-5885
7 - Meteor

Hi,

 

How to send an automatic email on a particular day of a week??

2 REPLIES 2
IraWatt
17 - Castor
17 - Castor

Hey @Ayaanarjun-5885,

If you have Alteryx Server you can schedule your workflow to run on any frequency you want. Check out this page Schedule a Workflow | Alteryx Help

FreeRangeDingo
11 - Bolide
11 - Bolide

You could also do it without server using a formula tool and a filter tool.  I would use the following formulas...

 

DateTimeNow() to get today's date (This column is named "Date").

DateTimeFormat([Date],"%A") to get the day of the week. (This column is named "Day").

 

After the formula tool add a filter tool that says if [Day] = "Monday" (or whatever day you want).  Then, add your email tool.  That should do it.  

FreeRangeDingo_0-1657036071859.png

 

 

Labels