---
title: "How to show only entries from the current day, week, month, or year"
date: 2026-04-23
author: "GravityKit"
link: "https://www.gravitykit.com/docs/gravityview-pro/advanced-filter/filter-relative-timeframe/"
---

💡 Check out our Advanced Filtering course with **step-by-step instructions and videos.** [Check it out! ➡](https://gravity.guide/course/using-gravityview-advanced-filter-to-easily-display-subsets-of-your-view/)

The [Advanced Filtering](https://www.gravitykit.com/products/advanced-filter/) extension allows you to filter using date ranges. To modify your filters, edit your View, scroll to the Settings Panel, and click on the Filter & Sort tab.

### Show only Gravity Forms entries submitted this month

Thanks to the wonders of the [PHP Relative Formats](https://www.php.net/manual/en/datetime.formats.php#datetime.formats.relative), we can create filters that show entries only from this month like this:

![Advanced filter setup for date range: after last day of last month and before first day of next month](https://www.gravitykit.com/wp-content/uploads/2025/10/file-IWCdr4q18a.png)To show entries from the current month, we do a few mental gymnastics: instead of saying "show entries from this month," we tell Advanced Filtering to show entries that come *between* last month and next month. The filters shown are configured to show entries that are after ("is after")
*last month and before ("is before") next month*

#### To show only entries submitted this week

To show entries from last week, set Entry Date filters to:

- "is after", value: "Sunday last week"
- "is before", value: "monday next week"

#### To show only entries submitted today

To show entries from today, set Entry Date filters to:

- "is after", value: "yesterday"
- "is before", value: "tomorrow"

#### Show only entries from last month

To show entries from last month, you'll need two add an additional OR clause with the "is on" operator:

- "is after", value: "first day of last month" OR "is on", value: "first day of last month".
- AND
- "is before", value: "last day of last month" OR "is on", value: "last day of last month".

![Advanced filter setup for entries based on date criteria, using conditions "is after" or "is on" specific month dates](https://www.gravitykit.com/wp-content/uploads/2025/10/file-TXVZ6fy4CJ.png)

#### Show only entries from this month and the next month

To show entries from this month and the next:

- "is after", value: "last day of last month".
- AND
- "is before", value: "first day of +2 month".

#### This relative date technique will work for any Gravity Forms date field

You can use this approach with any [Date field](https://docs.gravityforms.com/date/), allowing you to show the following:

- **Deadlines** that are approaching
- **Fulfillment dates** happening this week use (greater than "last Sunday" and less than "next Monday")
- **Entries** created today (greater than "yesterday" and less than "tomorrow")

You can use this website to test your relative dates: