# Check whether creation date is in a certain period

**URL:** https://community.glideapps.com/t/check-whether-creation-date-is-in-a-certain-period/19147
**Category:** Ask for Help
**Created:** [November 30, 2020, 3:15pm UTC](https://community.glideapps.com/t/check-whether-creation-date-is-in-a-certain-period/19147 "2020-11-30T15:15:30Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Miran](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/miran/32/1028_2.png) [@Miran](https://community.glideapps.com/u/Miran)
#### Post date: [November 30, 2020, 3:15pm UTC](https://community.glideapps.com/t/check-whether-creation-date-is-in-a-certain-period/19147/1 "2020-11-30T15:15:30Z")

</div>

Hi!

I have a list of different entries (rows) per user that contains a creation date.  
Example: Miran xxxx 11/30/2020

On a different tab I have a list that contains a period per user.  
Example  
Miran 10/30/2020 - 12/31/2020  
Miran 02/01/2021 - 04/01/2020

I need to check whether the creation date of a row of a user is in a certain period.  
If so then I need to perform an action. Any ideas on how to implement this?

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [November 30, 2020, 3:51pm UTC](https://community.glideapps.com/t/check-whether-creation-date-is-in-a-certain-period/19147/2 "2020-11-30T15:51:49Z")

</div>

That period should be separated into a start time and end time.

I imagine you can use an if then else like this, let’s call it “Check”.

If Entry creation date is before Starting date then False.

Else if Entry creation date is after Ending date then False.

Else True.
