May 30, 2022 02:53 AM
Is it possible to make an automation to send out an email every third Monday of the month? I was only able to find ways to send out the email every certain day or time of the month, but not a specific third weekday. Thank you!
May 30, 2022 04:12 AM
Hi Callie, to do this I would create two automations:
To get the third Monday of the month, we would modify the formula provided by @Kamille_Parks in this thread, and the following is what I came up with (mistakes my own):
DATEADD(
Date,
SWITCH(
WEEKDAY(Date),
0, 15,
1, 14,
2, 20,
3, 19,
4, 18,
5, 17,
6, 16
),
"days"
)
I’ve created a base with the automations and formula set up here. To view the setup (formulas, automations etc), duplicate the base by clicking the title of the base at the top of the screen, then the three horizontal dots on the right, and then the “Duplicate Base” button.
May 31, 2022 03:29 AM
Thank you so much for replying so quickly, this was a big help!