Skip to main content
Question

Action flow scheduling bi-weekly

  • June 18, 2026
  • 1 reply
  • 48 views

julia.oppen11
Level 6
Forum|alt.badge.img+3

How to schedule an action flow to run bi-weekly every second Monday?

1 reply

Harshit Jain
Celonaut
Forum|alt.badge.img

Hi Julia,

Best Approach:

Automatic → Days of the week → Monday → your desired timeBecause the UI gives you weekly Monday scheduling, add a Router/filter immediately after the trigger so it continues only every second week.

You can use this condition:
mod(parseNumber(formatDate(now; "W"; "UTC"); "."); 2) = 0

If it runs on the wrong Monday, change it to:
mod(parseNumber(formatDate(now; "W"; "UTC"); "."); 2) = 1

Alternative Approach:

Automatic → At regular intervals → 20160 minutes

This way it runs bi-weekly on the day you desire.

But I would suggest you opt for Best Approach.

Please drop a like you feel this approach works.

Thanks and Regards
Harshit