Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Unanswered

Date Picker

(1) ShareShare
ReportReport
Posted on by 17
Hi Team, 
Please help with the below if possible!
 
I have a Date picker which filters a SharePoint List gallery as seen in images attached.
 
 
But the Date picker only shows entries that has 00:00 in SharePoint list
 
 
How to make it show all the entries in SP list on the selected day of the date picker regardless of the time.
 
 
Any help is appreciated.
Kind regards,
Ash
Categories:
  • WarrenBelz Profile Picture
    146,618 Most Valuable Professional on at
    Date Picker
    You can probably expand this with
    With(
       {
          _Next:
          DateAdd(
             DatePicker2.SelectedDate,
             1,
             TimeUnit.Days
          )
       },
       Filter(
          'Signing in Register', 
          'Time In' >= DatePicker2.SelectedDate &&
          'Time In' < _Next
       )
    )
    
     
    Please click Does this answer your question 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 a Like.
    MVP (Business Applications)     Visit my blog Practical Power Apps    Buy me a coffee
  • timl Profile Picture
    34,935 Super User 2025 Season 1 on at
    Date Picker
    Hi Ash
     
    The first part probably should use the >= operator to capture those records with a 00:00 timestamp.
     
    I would try this to see if it makes a difference. I typically call the DateAdd function to explicitly state the time unit. 
     
    Filter(
       'Signing in Register', 
       'Time In' >= DatePicker2.SelectedDate &&
       'Time In' < DateAdd(DatePicker2.SelectedDate, 1, TimeUnit.Days)
    )
     
  • AshanSilva Profile Picture
    17 on at
    Date Picker
    Hi Warren,
     
    This is what I need to do but entering your suggestion did not do anything. Not even an error. Please see image attached.
  • WarrenBelz Profile Picture
    146,618 Most Valuable Professional on at
    Date Picker
    If you are filtering on a Date/Time field, you need to do this which is after 0:00 on the date selected and before 0:00 on the next day.
    Filter(
       'Signing in Register', 
       'Time In' > DatePicker2.SelectedDate &&
       'Time In' < DatePicker2.SelectedDate + 1
    )
     
    Please click Does this answer your question 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 a Like.
    MVP (Business Applications)     Visit my blog Practical Power Apps    Buy me a coffee

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

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,618 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,962 Most Valuable Professional

Leaderboard