Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Community Calls Conversations
Suggested answer

How to search multi tags with single text (separator +) gallery powerapps

Like (0) ShareShare
ReportReport
Posted on 28 Nov 2024 14:38:04 by
Hi,
 
I search code to search and filter collection gallery multi-columns with a single text (example : bed+mail+test).
 
Thanks a lot for your help
 
Laurent (the french)
  • mmbr1606 Profile Picture
    12,442 Super User 2025 Season 1 on 04 Apr 2025 at 08:47:48
    How to search multi tags with single text (separator +) gallery powerapps
    hey
     
     
    did u have the chance of trying what i suggested?

    If it worked please mark as verified answer so we can also help others
     
    thanks in advance
  • Suggested answer
    mmbr1606 Profile Picture
    12,442 Super User 2025 Season 1 on 29 Nov 2024 at 06:22:58
    How to search multi tags with single text (separator +) gallery powerapps
    hey
     
    can u try this approach:
    If(
        IsBlank(TextInput1.Text),
        DataSource,
        Filter(
            DataSource,
            ForAll(
                Split(TextInput1.Text, "+"),
                Lower(Value) in Lower(Name) ||
                Lower(Value) in Lower(Type) ||
                Lower(Value) in Lower(Description)
            )
        )
    )
    
    you would need to insert a textinput control that functions as a searchbox. if you rename the input control you also need to change it in the filter of the items property
     

    you can also try this:

     
    if my answer helped please mark as verified,
     
    Filter(
        DataSource,
        StartsWith(Name, TextInput1.Text) || 
        StartsWith(Type, TextInput1.Text) || 
        StartsWith(Description, TextInput1.Text)
    )
    

     
    cheers

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 Winners! 🌸

Congratulations to all our community participants!

Warren Belz – Community Spotlight

We are honored to recognize Warren Belz as our May 2025 Community…

Congratulations to the April Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard > Power Apps - Community Calls Conversations

#1
RBB97 Profile Picture

RBB97 2

Overall leaderboard

Featured topics

Loading started