web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id : VsCobmG2l3tLGcOqNQ2chM
Power Apps - Building Power Apps
Answered

Sharepoint just stuck at Getting your data

Like (0) ShareShare
ReportReport
Posted on 6 Jul 2020 16:44:36 by 9

I have created a form using a Sharepoint list.  When I click into the form in SP, it just hangs up at Getting your data.  

 

I've tried the following steps:

  1) My OnSuccess value is ResetForm(SharePointForm1); RequestHide()

  2) I switched the form default property from Edit to New.  

  3) I tried to add If(IsBlank(LookUp('Intake Form', ID = SharePointIntegration.SelectedListItemID)), First('Intake Form'), LookUp('Intake Form', ID = SharePointIntegration.SelectedListItemID)) to the Item value but receive the following message.  "Delegation warning.  The highlighted part of this formula might not work correctly on large data sets. "First" operation is not supported by this connector."

 

Please help.

 

Categories:
  • lcdelgado Profile Picture
    379 on 23 May 2023 at 19:36:37
    Re: Sharepoint just stuck at Getting your data

    Verify your Item formula says: DEFAULT and not FIRST before the Form name @'Food Donation List' on my case was that. hope this will help

     

    If(IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),Defaults([@'Food Donation List']),SharePointIntegration.Selected)

  • mkortink Profile Picture
    8 on 18 Oct 2022 at 00:31:09
    Re: Sharepoint just stuck at Getting your data

    I have had this problem twice, and if you search so have many others, I will give my answer here and hope other can find it.

     

    What happens is the SharePointIntegration connector becomes corrupted and no longer works properly. How, I think if you make even minor changes to the list structure it can screw up SharePointIntegration which seems to have the previous list structure embedded in it somehow.

     

    While SharePointIntegration.SelectedListItemID still gets set correctly SharePointIntegration.Selected is empty. Sometimes using LookUp(YourList,ID=SharePointIntegration.SelectedListItemID) instead of SharePointIntegration.Selected seems to work, but it never worked for me.

     

    My solution does require some effort, but it is better than starting from scratch. I will outline it here, you can work out the details.

    1. You have a list I will call ListA and it has a custom form I will call screenA.
    2. Create a separate new canvas PowerApp I will call appB and connect it to the listA as a datasource. Make sure all the names are the same.
    3. Create a blank screen in appB called screenB.
    4. Open the custom form screenA from listA in PowerApps.
    5. Press Ctrl-A then ctrl-C to select everything on screenA and copy it all to the clipboard.
    6. Go to appB, select screenB, and press Ctrl-V to paste everything onto the screen. This is your backup screen, it will probably have some errors due to SharePointIntegration not existing in appB, and the formatting might be messed up, but ignore these errors.
    7. Look for errors in appB that relate to variables and collections and other stuff outside of sreenB, make careful notes, you will need to recreate these later.
    8. Go back to the list, open it settings, select form settings, and switch to using the default SharePoint form making sure you delete the custom form. Thats right, get rid of it completely!
    9. Now to make sure, go to the list and add/edit some items to make sure the default form is being used.
    10. Now create a custom form again, SharePoint will open PowerApps and give you a default screen to start customising which I will call screenC.
    11. Make a minor visible change to screenC, go back to the list, test screenC works (you will know you are getting screenC because you can see the minor change. This proves SharePointIntegration  is working again.
    12. From the list open the custom form in PowerApps again. 
    13. Now select all, copy and paste (Ctrl-A, ctrl-C, ctrl-V) screenB from the backup to screenC. All the controls should hook up because SharePointIntegration and the same datasource are in the custom form app.
    14. You may still have errors. Use the careful notes you took in step 7 to resolve these.

     

     

  • darrellwinston Profile Picture
    7 on 17 Oct 2022 at 18:04:13
    Re: Sharepoint just stuck at Getting your data

    Exactly.  It takes forever because of the STUPID User Interface design.  I have NEVER seen an IDE change Properties on another Control, because I am editing a separate Control.  So deleting the the Form is a Terrible solution...but the way this application is made, I wouldn't be surprised if that is the only solution... Sorry about my venting here.

  • KevinColeMCM Profile Picture
    36 on 14 Sep 2021 at 22:01:19
    Re: Sharepoint just stuck at Getting your data

    Deleting  your form and recreating it is a poor solution.  Especially when it takes 8 hours to make the dang form.

  • tmw900 Profile Picture
    9 on 08 Jul 2020 at 15:36:17
    Re: Sharepoint just stuck at Getting your data

    Hi @v-siky-msft,

     

    That worked!  Thank you very much.

     

    Tom

  • Verified answer
    v-siky-msft Profile Picture
    on 08 Jul 2020 at 02:36:18
    Re: Sharepoint just stuck at Getting your data

    Hi @tmw900 ,

     

    I have tried, but I can't reproduce your issue, there is no delegation warning in Items property.

    Snipaste_2020-07-08_10-31-11.png

    Here is an alternative workaround, try to modify the Items property as follows.

    LookUp(postcode,ID=SharePointIntegration.SelectedListItemID)

    If it still shows "Getting your data", please consider deleting the powerapps form in List Setting - Form Setting - Delete custom form, and then re-create one to see if the warning is gone.

    Hope this helps.

    Sik

  • tmw900 Profile Picture
    9 on 07 Jul 2020 at 12:46:47
    Re: Sharepoint just stuck at Getting your data

    Hi @v-siky-msft,

     

    Intake Form is the name of my datasource.   I added the code you provided in the Item field and I still get the same Delegation warning.  My form name is SharePointForm1.  Does the order in the tree view matter?  I have SharePointForm1 at the top and then labels and buttons below.

     

    Tom

  • tmw900 Profile Picture
    9 on 07 Jul 2020 at 12:43:16
    Re: Sharepoint just stuck at Getting your data

    Hi @WarrenBelz,

     

    Thank you for your reply.  I made your suggested changes and it still hangs up with the 'Getting your data'.

     

    One thing to note, my labels will display on the Getting your data screen but none of the form fields.  Any other thoughts?

     

    Thanks,

  • WarrenBelz Profile Picture
    148,894 Most Valuable Professional on 07 Jul 2020 at 05:06:48
    Re: Sharepoint just stuck at Getting your data

    Thanks @v-siky-msft ,

    I actually had a delegation error yesterday on that standard code and needed to change it to what I posted. It should not happen I know, but it did and I have seen a couple of other posts with the same issue.

  • v-siky-msft Profile Picture
    on 07 Jul 2020 at 03:41:22
    Re: Sharepoint just stuck at Getting your data

    Hi @tmw900 ,

     

    The issue is caused by Items property of Form.

    What is 'Intake Form'? Is it the form you are editing and customizing?

    If so, please modify the code as follows.

    If(IsBlank(SharePointIntegration.Selected)|| IsEmpty(SharePointIntegration.Selected), First([@'Intake Form']),SharePointIntegration.Selected)

    Hope this helps.

    Sik

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

Announcing our 2025 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for…

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410 Super User 2025 Season 2

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 2

Loading complete