Skip to content

Power Apps

Power Apps Filter Gallery By Dates In Next 'N' Quarters

Power Apps Filter Gallery By Dates In Next ‘N’ Quarters Filter a Power Apps gallery to show only dates within the next ‘N’ number of quarters where N is a nu...

Matthew Devaney
Published
Reading time
1 min read

Before you start

Is this guide for you?

Best entry point
Power Apps
Time investment
1 min read

Imported reference from Matthew Devaney's blog for learning purposes. Original: https://www.matthewdevaney.com/power-apps-filter-a-gallery-by-date-range-examples/power-apps-filter-gallery-by-dates-in-next-n-quarters/. Author: Matthew Devaney.

Power Apps Filter Gallery By Dates In Next ‘N’ Quarters

Filter a Power Apps gallery to show only dates within the next ‘N’ number of quarters where N is a number specified by the app maker. Input

Calendar Dates is a SharePoint list with consecutive days starting 1/1/2018 and ending 12/31/2024 (2,557 rows) Title CalendarDate Monday, January 1, 2018 1/1/2018 Tuesday, January 2, 2018 1/2/2018 Wednesday, January 3, 2018 1/3/2018 Thursday, January 4, 2018 1/4/2018 Friday, January 5, 2018 1/5/2018 … … Tuesday, December 31, 2024 12/31/2024 Code

Use this code in the Items property of a gallery. With( {

StartDate : Date ( Year(Today()), With( {

StartDate : Date ( Year(Today()), Month(Today()), Day(Today()) ),

EndDate : Date ( Year(Today()), Month(Today())+( 3 * 2 ), //change this number Day(Today()) ) -1 }, Filter(

'Calendar Dates' , CalendarDate >= StartDate, CalendarDate <= EndDate ) ) Code language: JavaScript ( javascript ) Output

Gallery shows only rows with a date in the next 2 quarters. Current date is 6/16/2021 Title CalendarDates Wednesday, June 16, 2021 6/16/2021 Thursday, June 17, 2021 6/17/2021 Friday, June 18, 2021 6/18/2021 Saturday, June 19, 2021 6/19/2021 Sunday, June 20, 2021 6/20/2021 … … Wednesday, December 15, 2021 12/15/2021 (183 rows)

Share this

Tagged

Gallery · Power Apps

Have a Microsoft 365 topic idea?

Share article suggestions, community session ideas, corrections, or real-world scenarios for future nextM365 learning notes.

Suggest a topic

Keep learning Microsoft 365

Explore more practical guides for SharePoint, Power Platform, Copilot Studio, migration, automation, governance, and security.

Continue learning

Next action

What to do next

Browse all tutorials →