I've created a calendar view using a SharePoint calendar in PowerApps. I based this off of this tutorial: https://www.youtube.com/watch?v=1rsyyYiI4sU&t=1168s
I can't seem to figure out how to get the dates that have passed to drop off the gallery view automatically. Any ideas?
Hi @Anonymous,
Could you please share a bit more about your scenario?
Do you want to filter the items within the Gallery control and then remove the items (events) whose created date (or End date or Start date) is passed?
If you want to filter the items within the Gallery control and then remove the items (events) whose created date (or End date or Start date) is passed, I think the Filter function could achieve your needs.
I assume that you want to filter out the items (events) whose created date is less than current date, I have made a test on my side, please take a try with the following workaround:
Set the Items property of the Gallery control to following formula:
SortByColumns(
Filter(
'20180806_CalendarList',
StartsWith(Title, TextSearchBox1.Text),
Created>=Today()
),
"Title", If(SortDescending1, Descending, Ascending)
)
If you want to filter out the items (events) whose Start date is less than current date, please type the following formula:
SortByColumns(
Filter(
'20180806_CalendarList',
StartsWith(Title, TextSearchBox1.Text),
EventDate>=Today()
),
"Title", If(SortDescending1, Descending, Ascending)
)
If you want to filter out the items (events) whose End date is less than current date, please type the following formula:
SortByColumns(
Filter(
'20180806_CalendarList',
StartsWith(Title, TextSearchBox1.Text),
EndDate>=Today()
),
"Title", If(SortDescending1, Descending, Ascending)
)
More details about the Filter function in PowerApps, please check the following article:
Best regards,
Kris
Thank you so very much. The following filter is exactly what I needed:
If you want to filter out the items (events) whose Start date is less than current date, please type the following formula:
SortByColumns(
Filter(
'20180806_CalendarList',
StartsWith(Title, TextSearchBox1.Text),
EventDate>=Today()
),
"Title", If(SortDescending1, Descending, Ascending)
)
Very grateful for your help!
User | Count |
---|---|
139 | |
137 | |
77 | |
77 | |
71 |
User | Count |
---|---|
224 | |
179 | |
68 | |
68 | |
58 |