Skip to main content

Notifications

Community site session details

Community site session details

Session Id : ebHz2FiKsB60cgA/MYeZeu
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,121 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,121 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

Understanding Microsoft Agents - Introductory Session

Confused about how agents work across the Microsoft ecosystem? Register today!

Warren Belz – Community Spotlight

We are honored to recognize Warren Belz as our May 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,731 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 66,075 Most Valuable Professional

Leaderboard

Featured topics

Loading started