Forum Discussion
PowerApp forms get stuck on "Getting your data..."
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 :)
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.