I have a field on in a collection that is a time stamp:
Created On = 8/26/2020 9:23PM
Then I have two date picker that is just the date:
Start: 8/19/2020
Finish: 8/26/2020
In my collection, I have a filter:
Filter(
'Pipeline Candidates',
PipelineTemplate.Name = drpPipeline.Selected.Result
, 'Created On' <= pickerStartDate.SelectedDate
, 'Created On' >= pickerEndDate.SelectedDate
However, its not returning the appropriate dates. If my EndDate is 8/26, it will only show me results through 8/25. It will not include any results with the date 8/26
I suspect its because of the time "9:23 PM".
How do I convert 8/26/2020 9:23PM to 8/26/2020 and keep it as a date type?

Report
All responses (
Answers (