I am trying to Check selected dates in the PowerApps against a list of dates in a SharePoint list. Below is what I am trying to do.
I have 2 date pickers (start date and end date).
For example, I selected start date as 01/09/2021 and end date as 03/09/2021.
In share point list i have 2 column which i need to check (i.e. From and To).
I want to loop through these 3 dates and check if any of these dates exists in my Scheduler list. Right now, I am creating a collection on OnChange property of end date picker but i am not getting desire my output.
//
ClearCollect(
colCheckDates,
Filter(
Scheduler ,
RequesterEmail = User().Email &&
To >= DataCardValue15.SelectedDate
)
);
I have gone through this thread but i am confused for some reasons.
Any help would be appreciated.
Thanks
Ahmad