Forum Discussion
Anonymous
Aug 16, 2018PowerApp forms get stuck on "Getting your data..."
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,...
noNameQA
Jun 10, 2023Copper Contributor
Hi, I am having the same problem and I tried the below solutions but didn't work.
My first problem was not seeing the Form1 when I run the application.
I saw two ways to resolve this problem:
1. Change Default Mode from Edit to New
2. Or add First('Test Sample list') into Item when the Default Mode is Edit
both work fine. However, in both versions, if I reach the app via the link I see Getting your data message.
I tried to add ResetForm(Form1); RequestHide() but it didn't work. I tried to add what Sheldor suggested.
If(IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),First('insert data source name'),SharePointIntegration.Selected)
But I am getting an error for SharePointIntegration because I think I didn’t use it.
What I did is, I created a list in SharePoint (5-6 columns, empty data) and then I connected this to PowerApps.
My aim is only to submit new data to this list.
How can I overcome this problem?
My first problem was not seeing the Form1 when I run the application.
I saw two ways to resolve this problem:
1. Change Default Mode from Edit to New
2. Or add First('Test Sample list') into Item when the Default Mode is Edit
both work fine. However, in both versions, if I reach the app via the link I see Getting your data message.
I tried to add ResetForm(Form1); RequestHide() but it didn't work. I tried to add what Sheldor suggested.
If(IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),First('insert data source name'),SharePointIntegration.Selected)
But I am getting an error for SharePointIntegration because I think I didn’t use it.
What I did is, I created a list in SharePoint (5-6 columns, empty data) and then I connected this to PowerApps.
My aim is only to submit new data to this list.
How can I overcome this problem?
kwanc975
Oct 03, 2024Copper Contributor
noNameQA Did you ever figure out how to fix this issue? If so, can you please share? I'm having the same problem as you.
- noNameQAOct 03, 2024Copper Contributor
kwanc975 Hi, I think after trying the mentioned solution my problem was still there since I wasn't publishing the latest version. After publishing the latest version of my app I was able to solve the problem. That's what I remember. For publishing: https://learn.microsoft.com/en-us/power-apps/maker/canvas-apps/save-publish-app
Hope this helps.