Skip to main content

Context

When running automated flows, you may want certain steps (like sending emails or notifications) to execute only on specific days of the week, while allowing other steps (like data processing or sheet updates) to run normally every time the flow is triggered.

How it works

You can control when specific steps in your flow execute by using either of these methods: 1. Add a Custom Transform step before the actions you want to schedule
2. Enter a prompt that specifies your scheduling logic, such as: “Determine what day it is. If it is Friday, keep all rows. If it is any other day, remove all rows.”

Method 2: Using Standard Steps

Alternatively, you can achieve this using a combination of standard steps:
1
Add a “Add date/time column” step
2
Reformat the value to show day of week
3
Add a Filter step to keep rows only on your desired day
By placing either of these methods before your scheduled actions (like email sends or notifications), those steps will only execute on the specified day while allowing other branches of your flow to continue running normally.
Last modified on March 5, 2026