Store the selected date in a variable and use it in the filter, or wrap it with DateAdd to avoid type issues. For large datasets, using an integer date column is the most reliable and fully delegable approach.
// In the OnChange of your DatePicker or a Search Button
Set(varFilterDate, DatePicker1.SelectedDate);
// Then in your Gallery Items property
Filter(
'FFM_PAPPS_FS_USER',
CREATED_DATE >= varFilterDate
)
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.