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

Filter a gallery to show only dates within the next ‘N’ number of days 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)

TitleCalendarDate
Monday, January 1, 20181/1/2018
Tuesday, January 2, 20181/2/2018
Wednesday, January 3, 20181/3/2018
Thursday, January 4, 20181/4/2018
Friday, January 5, 20181/5/2018
Tuesday, December 31, 202412/31/2024


Code

Use this code in the Items property of a gallery.

With(
    {
        StartDate: Today(),
        EndDate: Today() + 5  // change this number
    },
    Filter(
        'Calendar Dates',
        CalendarDate >= StartDate,
        CalendarDate <= EndDate
    )
)


Output

Gallery shows only rows with a date in the next 5 days. Current date is 6/16/2021

TitleCalendarDate
Wednesday, June 16, 20216/16/2021
Thursday, June 17, 20216/17/2021
Friday, June 18, 20216/18/2021
Saturday, June 19, 20216/19/2021
Sunday, June 20, 20216/20/2021