# Need Help: Calendar That Identifies Weekends in Glide

**URL:** https://community.glideapps.com/t/need-help-calendar-that-identifies-weekends-in-glide/85304
**Category:** Ask for Help
**Created:** [November 11, 2025, 9:41am UTC](https://community.glideapps.com/t/need-help-calendar-that-identifies-weekends-in-glide/85304 "2025-11-11T09:41:59Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Anna\_Kakushadze](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/anna_kakushadze/32/88955_2.png) [@Anna\_Kakushadze](https://community.glideapps.com/u/Anna_Kakushadze)
#### Post date: [November 11, 2025, 9:41am UTC](https://community.glideapps.com/t/need-help-calendar-that-identifies-weekends-in-glide/85304/1 "2025-11-11T09:41:59Z")

</div>

Dear Glide Community,

I’m trying to add a calendar to my app that automatically recognizes weekends. Is there a simple way to achieve this? 🙏

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [November 11, 2025, 9:53am UTC](https://community.glideapps.com/t/need-help-calendar-that-identifies-weekends-in-glide/85304/2 "2025-11-11T09:53:31Z")

</div>

Can you elaborate a little on your actual goal please?

It’s easy enough to determine if any given date falls on a weekend, but what will you do with that information?

For example:

- do you want weekends to appear differently on your calendar?
- do you want to block users from creating events that fall on weekends?
- something else?

---

<div class="post-metadata">

### Author: ![Anna\_Kakushadze](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/anna_kakushadze/32/88955_2.png) [@Anna\_Kakushadze](https://community.glideapps.com/u/Anna_Kakushadze)
#### Post date: [November 11, 2025, 9:58am UTC](https://community.glideapps.com/t/need-help-calendar-that-identifies-weekends-in-glide/85304/3 "2025-11-11T09:58:54Z")

</div>

Dear Darren, thank you so much for responding.

I want to create special offers for weekends. So when a user selects a date that falls on a weekend, I’d like a weekend offer to automatically appear.

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [November 11, 2025, 10:19am UTC](https://community.glideapps.com/t/need-help-calendar-that-identifies-weekends-in-glide/85304/4 "2025-11-11T10:19:16Z")

</div>

Okay, understood.

You will need to use a [Custom Form](https://community.glideapps.com/t/how-do-i-create-a-custom-form/25014) for this, so that you can detect that a weekend day has been selected and apply the offer _before_ the form is submitted. Have a look at the thread that I linked to, and you can download a template that demonstrates how to create a custom form.

When a date is selected, to detect whether or not it falls on a weekend, you simply need to pass the date to a Math column that uses the following formula:

```auto
Weekday(Date)

```

The above will return a number between 1 and 7, where 1 is a Sunday and 7 is a Saturday. So assuming that you define a weekend as Saturday/Sunday, then if the math column returns 1 or 7 then you know the selected date falls on a weekend.

---

<div class="post-metadata">

### Author: ![Anna\_Kakushadze](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/anna_kakushadze/32/88955_2.png) [@Anna\_Kakushadze](https://community.glideapps.com/u/Anna_Kakushadze)
#### Post date: [November 11, 2025, 10:20am UTC](https://community.glideapps.com/t/need-help-calendar-that-identifies-weekends-in-glide/85304/5 "2025-11-11T10:20:04Z")

</div>

Thank you so much! will try now 🙂
