Aug 16 2018 08:21 AM
Aug 16 2018 08:21 AM
Some, but not all of my SharePoint Forms that are built using PowerApps are getting stuck saying (Getting your data...". The strange thing is that sometimes the data will load then this will happen, or I can click out of the form and reopen it and then it will work. Anyone experiencing a similar issue?
Feb 17 2020 02:16 PM
If it's an Edit form, make sure it has a record stipulated in the Items property - otherwise it tends to show up as a blank form when you run the app. You need to tell it to start at the first field or it gets lost in BFE. I tried many crazy suggestions for a couple of hours and this one finally worked and actually made sense. The Item's property for an Edit form is usually linked to a gallery selection somewhere else, but I'd need some more info to determine if this is the case for this app - for now set it to
First(yourSourceName)
where yourSourceName is your SharePoint list connection - if that doesn't work I'll need some more info
Mar 11 2020 08:12 AM
This totally worked for me. I guess for some reason when I started with a new form on my screen the Item field didn't auto-populate or something. Putting the text in you suggested worked like a charm. It pulls the data into the form now. When you click the edit button you can edit, however if you pull the form up in view, then click edit all, it doesn't switch over to edit. I'm going to keep digging on this.
May 22 2020 11:24 AM
Jun 18 2020 08:30 AM
@Sheldor I've tried your method to "Getting your data" issue on another form I was working on, and I'm getting a message that reads "Delegation warning.... The "First" operation is not supported by this connector." Would you happen to know how to fix this issue?
Jun 22 2020 12:09 AM
Just came across this page while searching similar problem but in New Form. If always stuck in "getting your data" or "No Item to Display", select the Form and in Properties make select Default Mode as New.
Jun 23 2020 02:24 AM
@Sheldor Hi, Thanks for this help. I did just you directed in your reply, however my app is telling me that the SharePointIntegration identifier isn't recognized. What do you suggest can be done?
Jun 23 2020 05:22 AM
@darrenmuscat This worked for me on an OOB form. Thanks! Don't really understand why it fixes the issue, so I'll research that a bit more, but it works, and that's all that matters. Thanks again!
Jul 31 2020 06:00 PM
@adityabajaj I created an account just to say thank you.
Aug 13 2020 01:07 PM
@Sheldor - I'm facing something similar issue "Getting your data", for the certain user they cannot see the data, while I use the formula on Item of Form (Query on Powerapps)
If(IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),First('insert data source name'),SharePointIntegration.Selected)
But the user still see the blank form (Error on Powerapps)
Nov 04 2020 05:36 AM
@Carolina_MiC I'm with you on this. Did you get any feedback from support? The "fixes" in this post appear to be workarounds to a root problem with power forms and SP. I found it best to simply delete all versions of form and start over. My list is quite simple though.
Nov 26 2020 09:28 AM
Jan 26 2021 03:53 AM
@Alan Chai This worked for me today. Thank you. I love the Power App Community!
Feb 25 2021 08:35 AM
@Greg_Guth wrote:If it's an Edit form, make sure it has a record stipulated in the Items property
Perfecto! I had a multi-screen form and while I configured the Item property for the first screen I did not configure it for the other screens so they didn't load.
Mar 02 2021 11:02 AM
Nov 05 2021 06:34 AM
Feb 21 2022 05:31 AM
@Carolina_MiC how did it turn out?
Mar 29 2022 07:19 AM
May 13 2022 03:28 AM
I simply switched the Default mode of the form to new, i had it set to edit as modified the form to custom after the initial data connection. This fixed the issue for me.
I personal like to add the form attributes separately so i can position them without the constraints of then within the form section, but this does lead to issues when you start adding the verification later on in the build as many of the validation features are embedded within the form attribute.
Dec 13 2022 06:47 AM
Jan 06 2023 05:25 AM
Hi
from the other comments about re-ordering the functions on the form I thought the form should be reset at the start, so that's what I did.
Select App (top of left Pane)
Set property 'OnStart' to Reset(Formname)
It worked a treat!
But I never would have got there on my own, so thanks Alan Chai