Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Answered

Power Apps delegation

(1) ShareShare
ReportReport
Posted on by 17
I am using the power Apps and its gives delegation warning for using GUID formula on the large data set. How could I address the problem. Appreciate any help

Explanation: The formula uses Patch function to upload the attached document to Estimating Approval APPs tables table.
It uses a collection WBSEestimates2 which is collected from Estimating Approval APPs tables. By comparing the GUIDS It uploads the attachment to each rows.

Formula.
ForAll( WBSEestimates2,
    Patch(
    'Estimating Approval Apps',LookUp('Estimating Approval Apps' As A,GUID(ThisRecord.'Estimating Approval App')= A[@'Estimating Approval App'])
    ,
    {
        Attachment: {
            FileName: First(DataCardValue6.Attachments).Name,
            Value: First(DataCardValue6.Attachments).Value
        }
    }
))
  • Rushi_555 Profile Picture
    17 on at
    Re: Power Apps delegation

    Thank you Michael Gernaey, definately I'll start including screen shot for future posts.

  • Verified answer
    Michael E. Gernaey Profile Picture
    41,322 Super User 2025 Season 1 on at
    Re: Power Apps delegation

    Hi @Rushi_555 

     

    Try this

    ForAll( WBSEestimates2,
     With(
     {EstimagingGuid: GUID(ThisRecord.'Estimating Approval App') },
    
     Patch('Estimating Approval Apps',LookUp('Estimating Approval Apps' As A,
     EstimagingGuid = A[@'Estimating Approval App']),
     {
     Attachment: {
     FileName: First(DataCardValue6.Attachments).Name,
     Value: First(DataCardValue6.Attachments).Value
     }
     }
     ) 
     );
    )

     

    Please share a picture next time also so we can see exactly where the delegation issue is or ifs theres multiple 🙂


    If I have helped you, I would really appreciate if you please Mark my answer as Resolved/Answered, and give it a thumbs up, so it can help others

    Cheers

    Thank You
    Michael Gernaey MCT | MCSE | MCP | Self-Contractor| Ex-Microsoft
    https://gernaeysoftware.com
    LinkedIn: https://www.linkedin.com/in/michaelgernaey

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!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 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,679 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 66,015 Most Valuable Professional

Leaderboard