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 / Handling delegation wa...
Power Apps
Unanswered

Handling delegation warnings

(0) ShareShare
ReportReport
Posted on by 132

Hi everyone...

 

I inherited a Power App with a page connected to a SharePoint list that's returning a delegation warning. I've been able to handle a different delegation warning by using the StartsWith function within the Items property of a gallery, but I need help with the below formula. 

 

Can anyone suggest where I might insert, "StartsWith?"

 

SortByColumns(Filter('SharePointList',(Title_search.Text in Title || Title_search.Text in Author.DisplayName || Title_search.Text in Owner.Value) || IsBlank(Title_search.Text)),"Title")

 

Thanks in advance to anyone who can help.

Categories:
I have the same question (0)
  • Ramole Profile Picture
    Super User 2024 Season 1 on at

    Hi @bchager6 

    Let me give you an example here is a code am using multi StartsWith and is delegable which you can amend to your requirements

     

     

    Filter(Customers,
     (
     Or(
     StartsWith(Company,InpSearchCustomerMain.Text),
     StartsWith('Business Phone',InpSearchCustomerMain.Text),
     StartsWith(City,InpSearchCustomerMain.Text),
     StartsWith(Address,InpSearchCustomerMain.Text),
     StartsWith('ZIP/Postal Code',InpSearchCustomerMain.Text)
     
     )
     
     )))

     

      

  • Ramole Profile Picture
    Super User 2024 Season 1 on at

    @bchager6 

    That this Solve what you have asked? 

  • WarrenBelz Profile Picture
    156,127 Most Valuable Professional on at

    Hi @bchager6 ,

    Try this

    SortByColumns(
     Filter(
     'SharePointList',
     Len(Title_search.Text) = 0 ||
     (
     StartsWith(
     Title, 
     Title_search.Text
     ) || 
     StartsWith(
     Author.DisplayName
     Title_search.Text
     ) ||
     StartsWith(
     Owner.Value, 
     Title_search.Text
     )
     )
     ),
     "Title"
    )

     

    Please click Accept as solution 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 Thumbs Up.

    Visit my blog Practical Power Apps

  • Ramole Profile Picture
    Super User 2024 Season 1 on at

    Hi @bchager6 
    Let me know if you need any more assistance.

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

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 335 Most Valuable Professional

#2
11manish Profile Picture

11manish 166

#3
sannavajjala87 Profile Picture

sannavajjala87 71 Super User 2026 Season 1

Last 30 days Overall leaderboard