# Option for “Last day of month” in Scheduled Workflows

**URL:** https://community.glideapps.com/t/option-for-last-day-of-month-in-scheduled-workflows/86574
**Category:** Feature Requests
**Created:** [March 6, 2026, 3:51pm UTC](https://community.glideapps.com/t/option-for-last-day-of-month-in-scheduled-workflows/86574 "2026-03-06T15:51:26Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Rien\_Dumore](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/rien_dumore/32/79283_2.png) [@Rien\_Dumore](https://community.glideapps.com/u/Rien_Dumore)
#### Post date: [March 6, 2026, 3:51pm UTC](https://community.glideapps.com/t/option-for-last-day-of-month-in-scheduled-workflows/86574/1 "2026-03-06T15:51:26Z")

</div>

I ran into a limitation with **monthly scheduled workflows** that makes certain automations unnecessarily complex.

Currently, when configuring a monthly schedule you can select specific days (28, 29, 30, 31). However, Glide does **not treat the 31st as “the last day of the month.”** If a month has fewer days (e.g. February or April), the workflow simply **skips that month entirely** instead of running on the last available day.

In many real-world cases the intention is simply:

**“Run this on the last day of each month.”**

Examples:

- End-of-month reporting
- Monthly billing
- Closing accounting periods
- Generating monthly summaries

Right now the only workaround is to build **additional logic inside the app** (checking month length, conditional triggers, etc.), which becomes messy and fragile for something that should be straightforward.

**Feature request:**

Add either:

- A selectable option: **“Last day of month”** , or
- Make the **31st automatically fall back to the last available day of that month**.

This would make scheduled workflows much more practical for monthly automations.

Curious if others have run into the same limitation.

---

<div class="post-metadata">

### Author: ![Mazen](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/mazen/32/84042_2.png) [@Mazen](https://community.glideapps.com/u/Mazen)
#### Post date: [March 6, 2026, 11:50pm UTC](https://community.glideapps.com/t/option-for-last-day-of-month-in-scheduled-workflows/86574/2 "2026-03-06T23:50:23Z")

</div>

I think you can achieve this inside glide if you schedule the workflow to run on 28, 29, 30, 31.  
Then inside the workflow:  
Get Today  
Calculate Tomorrow  
Check if Month(Today) ≠ Month(Tomorrow)  
If true → today is last day of the month.

---

<div class="post-metadata">

### Author: ![nathanaelb](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/nathanaelb/32/43079_2.png) [@nathanaelb](https://community.glideapps.com/u/nathanaelb)
#### Post date: [March 7, 2026, 1:45pm UTC](https://community.glideapps.com/t/option-for-last-day-of-month-in-scheduled-workflows/86574/3 "2026-03-07T13:45:08Z")

</div>

You can check out the guide on dates and times. You would need to build out the last day of the month but it should be doable.

---

<div class="post-metadata">

### Author: ![Rien\_Dumore](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/rien_dumore/32/79283_2.png) [@Rien\_Dumore](https://community.glideapps.com/u/Rien_Dumore)
#### Post date: [March 7, 2026, 4:49pm UTC](https://community.glideapps.com/t/option-for-last-day-of-month-in-scheduled-workflows/86574/4 "2026-03-07T16:49:10Z")

</div>

Yeah I was going to build that, but it seemed like somethings more people would want, so a feature request seemed better.

---

<div class="post-metadata">

### Author: ![Mazen](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/mazen/32/84042_2.png) [@Mazen](https://community.glideapps.com/u/Mazen)
#### Post date: [March 8, 2026, 1:29am UTC](https://community.glideapps.com/t/option-for-last-day-of-month-in-scheduled-workflows/86574/5 "2026-03-08T01:29:36Z")

</div>

Agreed, but you got what you needed while we wait for the feature : )

---

<div class="post-metadata">

### Author: ![Rien\_Dumore](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/rien_dumore/32/79283_2.png) [@Rien\_Dumore](https://community.glideapps.com/u/Rien_Dumore)
#### Post date: [March 8, 2026, 5:23pm UTC](https://community.glideapps.com/t/option-for-last-day-of-month-in-scheduled-workflows/86574/6 "2026-03-08T17:23:08Z")

</div>

Indeed, thanks : )
