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 Platform Community / Forums / Power Apps / Have issue with galler...
Power Apps
Unanswered

Have issue with gallery, filter and datepicker.

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

Hello,

Can someone help me to do multi filtering/search with text input and date picker.

I have 1 Text input called: TextSearch

I have 1 Date picker called: DateSearch

What i want is to be able to combine both in searches, to only view specific date in DateSearch and be able to Search or filter out entrys "Datacards".

I tried with a ComboBox but thats Not something that i want to use.

My sharepoint list is [@'My_SP_List']

My colums in splist is:

At the moment I'm using the filter below but it only does the "StartsWith" and i would like to be able to search with different criterias and not only one column:

Filter([@'My_SP_List'],StartsWith('Reporting user?'.Email,TextSearch.Text))

 

reporting.png
Categories:
  • wyotim Profile Picture
    2,545 on at

    Hey @Anonymous, try this:

    Filter(
     'My_SP_List',
     StartsWith(
     'Reporting user?'.Email,
     TextSearch.Text
     ),
     (DateColumn = DateSearch.SelectedDate || IsBlank(DateSearch.SelectedDate))
    )


    The IsBlank part checks if the date picker is blank and returns true. What this does is skip the date filter part if that is the case, only using the StartsWith portion of the filter. You could also simplify it (if you will always have a date in the date picker), like so:

     

    Filter(
     'My_SP_List',
     StartsWith(
     'Reporting user?'.Email,
     TextSearch.Text
     ),
     DateColumn = DateSearch.SelectedDate
    )


    Please let me know if that doesn't work or if I can try to help out further!

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

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 405 Super User 2026 Season 2

#2
Mohsin Ali Profile Picture

Mohsin Ali 368

#3
WarrenBelz Profile Picture

WarrenBelz 244 Most Valuable Professional

Last 30 days Overall leaderboard