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 :)
Thank you Sheldor.
Just calling out "insert data source name here" needs to be replaced with what you select/see in datasource such as sharepoint list.
- ben_ionHCAug 01, 2020Copper Contributor
adityabajaj I created an account just to say thank you.