Power Apps Filter Gallery By Dates In Previous 'N' Years
Power Apps Filter Gallery By Dates In Previous ‘N’ Years Filter a gallery to show only dates within the previous ‘N’ number of years where N is a number spec...
- 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-previous-n-years/. Author: Matthew Devaney.
Power Apps Filter Gallery By Dates In Previous ‘N’ Years
Filter a gallery to show only dates within the previous ‘N’ number of years 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()) -2 , // change this number Month(Today()), Day(Today()) )+ 1 ,
EndDate : Date ( Year(Today()), Month(Today()), Day(Today()) ) }, Filter(
'Calendar Dates' , CalendarDate >= StartDate, CalendarDate <= EndDate ) ) Code language: JavaScript ( javascript ) Output
Gallery shows only rows with a date in the previous 2 years. Current date is 6/16/2021 Title CalendarDate Monday, June 17, 2019 6/17/2019 Tuesday, June 18, 2019 6/18/2019 Wednesday, June 19, 2019 6/19/2019 Thursday, June 20, 2019 6/20/2019 Friday, June 21, 2019 6/21/2019 … … Wednesday, June 16, 2021 6/16/2021 (731 rows)
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.
Keep learning Microsoft 365
Explore more practical guides for SharePoint, Power Platform, Copilot Studio, migration, automation, governance, and security.
Continue learning
Related tutorials
Related questions
Related comparisons
Next action