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,...
Sheldor
Apr 10, 2019Copper Contributor
Hi guys,
I too was having the same issue but resolved it by:
1. Changing the form name in the Tree view to the left to its default value, which is SharePointForm1.
2. by adding
ResetForm(CreateItemForm); RequestHide()
to the OnSuccess field as Ryan Robinson suggested but obviously added my Form name instead of using "CreateItemForm", so my string looked something like this ResetForm(SharePointForm1); RequestHide()
3. I also added:
If(IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),First('insert data source name'),SharePointIntegration.Selected)
to the Item field in the same advanced properties menu for the problematic form as the field was blank for me for some reason.
I hope this works for somebody else as well :)
Databoss
Aug 30, 2023Copper Contributor
Thanks Sheldor
This is what worked for me, I added this to the OnSuccess field of the form
Navigate(Screen2);
ResetForm(Form1);
RequestHide()
Where:
Screen2 is the name of the screen I want to navigate to after the form is successfully submitted
Form1 is the name of the form.
- UdghoshJan 17, 2024Copper Contributor
I am having a the same issue but my app is set up a little differently, I have a home screen that is just buttons to navigate to different screens. The actual form is a splir of a couple things. A couple custom input fields and a repeating field gallery. Due to the requirements, this (and not the edit form) was the only way to do it. Due to this I don't actually have a form control per se. My app gets stuck on getting your data right when I start it. Any ideas?