Good morning everyone!
I have an app that gives me a delegation problem when filtering data because the date format of the DatePicker is different from the "Created" column in SharePoint.
DatePicker1.SelectedDate has this format: 04/04/2023
The "Created" column in a SharePoint list has this format: 04/04/2023 4:31
To compare these values, I changed the format of the "Created" column in Power Apps using the "DateValue" function. Here is my current code:
Filter('Internal Documents', DateValue(Created) = DatePicker1.SelectedDate && StartsWith(Name, ComboBox1.Selected.Value))
How can I avoid this delegation problem? Should I create another column in the list only with the date value? Is there any way to extract only the day without the time in the "Created" column?
Thank you very much for your time!