Hi All,
So I'm attempting to make a query between two dates.
In the problematic query it's anything that falls on or between 11/10/2021 and 11/17/2021
Both have the same creation time on SharePoint (maybe off by a few seconds)
When I filter by date in PowerApps one entry shows.. the other only shows if you set the end date one day later (11/18/2021).
Here's my code:
Filter(
'Reporting Updates',
assigned_agent.DisplayName = currentAnalyst And due_date >= startDate And due_date <= endDate
)
I thought maybe it was a UTC vs Local thing... But both of them show the exact same time/date string
What am I missing?