How to create quarterly or annually recurring task automation?

I see that i can set automation for hour/day/weeks

However, I am looking for way to set up monthly /quarterly/ annually recurring tasks.

Are there any way i can do this?

I could think of adding condition formula on exact month? will that be possible?

You can just set it up as a daily automation and add a condition to only continue if it’s the start of the month / quarter / year. By the way, automations set up this way won’t count towards the quota if you’re on a free plan, even though they technically fire daily.

To test whether today is the day you can use one of these:

Today() = Today().DateTimeTruncate("month")
Today() = Today().DateTimeTruncate("quarter")
Today() = Today().DateTimeTruncate("year")
2 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.