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 / Search with Wildcards
Power Apps
Unanswered

Search with Wildcards

(0) ShareShare
ReportReport
Posted on by 2,914

Using a wildcard (%) in a Search with D365 connector is supported but, unless I'm missing something, it appears wildcards are not supported in either SQL or when searching within local collections.

Anoyone know of a way of getting wildcards to work with SQL or local collections? A Search should be translated to 'like' in SQL so I'm guessing the connector is actively escapting the % wildcard character which is a strange thing to do...

Wildcards really should be supported in these cases.

 

Categories:
I have the same question (0)
  • iAm_ManCat Profile Picture
    18,256 Most Valuable Professional on at

    Can't really advise on the SQL side, but for local collections have you tried an IsMatch and then used regex to perform the wildcard?

     

    Cheers,

    Sancho

  • PaulD1 Profile Picture
    2,914 on at

    Thanks for the suggestion @iAm_ManCat 

     

    For the moment I'm experimenting with nesting multiple searches inside one another and splitting the search term on the wildcard character (in this case, a space).

    If(
     Len(conSearchText) > 2,
     SortByColumns(
     Search(
     Search(
     Search(
     Search(
     '[cr].[Account]',
     First(
     Split(
     conSearchText,
     " "
     )
     ).Result,
     "AccountName"
     ),
     Last(
     FirstN(
     Split(
     conSearchText,
     " "
     ),
     2
     )
     ).Result,
     "AccountName"
     ),
     Last(
     FirstN(
     Split(
     conSearchText,
     " "
     ),
     3
     )
     ).Result,
     "AccountName"
     ),
     Last(
     FirstN(
     Split(
     conSearchText,
     " "
     ),
     4
     )
     ).Result,
     "AccountName"
     ),
     "AccountName"
     ),
     Blank()
    )

     It has the benefit that the search terms do not have to appear in order, so search for 'A B Smith' would give 'B A Smith', 'Bob Smith-Allan' and so on. Down side is that if searching for 'M Simon' it will be just the same as searching for 'Simon' as it already contains an 'm'. 

    Will see if this suits the user-needs, if not, will looking into IsMatch and regular expressions (though can't recall if IsMatch is delegable, and if not, it won't help as the dataset is large).

  • iAm_ManCat Profile Picture
    18,256 Most Valuable Professional on at

    Yeah, I'd only advise the IsMatch for local collections - definitely not delegable! (yet)

     

    What you're doing at the moment seems the best way to go about it in the short term until more functions are made delegable 😺

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 Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 490

#2
WarrenBelz Profile Picture

WarrenBelz 375 Most Valuable Professional

#3
11manish Profile Picture

11manish 302

Last 30 days Overall leaderboard