> ## Documentation Index
> Fetch the complete documentation index at: https://parabola.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# How do I schedule certain flow steps to run only on specific days?

## 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:

### Method 1: Using Custom Transform (Recommended)

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."

<Frame>
  <img src="https://mintcdn.com/parabola-7119dfb0/yElMlrQLzUnRnyYT/images/faq/image-2.png?fit=max&auto=format&n=yElMlrQLzUnRnyYT&q=85&s=b19abfdf5cfc6f1890de0c3c7764dca0" alt="" width="628" height="950" data-path="images/faq/image-2.png" />
</Frame>

### Method 2: Using Standard Steps

Alternatively, you can achieve this using a combination of standard steps:

<Steps>
  <Step>
    Add a "Add date/time column" step
  </Step>

  <Step>
    Reformat the value to show day of week
  </Step>

  <Step>
    Add a Filter step to keep rows only on your desired day
  </Step>
</Steps>

<Frame>
  <img src="https://mintcdn.com/parabola-7119dfb0/yElMlrQLzUnRnyYT/images/faq/image-3.png?fit=max&auto=format&n=yElMlrQLzUnRnyYT&q=85&s=54b6a92a92bfa2b241ad7cfa2fdfb9ca" alt="" width="2026" height="1504" data-path="images/faq/image-3.png" />
</Frame>

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.
