web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Apps
Answered

comparing dates

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

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? 

Categories:
I have the same question (0)
  • Verified answer
    WarrenBelz Profile Picture
    156,373 Most Valuable Professional on at

    Hi @morall ,

    That is because created is a date/time value and the date picker is a date, which defaults to the start of the day.

    Filter(
     'Pipeline Candidates',
     PipelineTemplate.Name = drpPipeline.Selected.Result &&
     'Created On' <= pickerStartDate.SelectedDate &&
     DateDiff(
     'Created On',
     pickerEndDate.SelectedDate,
     Days
     )<=1
    )
     

     

    Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

Under review

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.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 429 Most Valuable Professional

#2
11manish Profile Picture

11manish 191 Super User 2026 Season 2

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 122 Super User 2026 Season 2

Last 30 days Overall leaderboard