Forum Discussion
Deleted
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,...
Luca Ziegler
Oct 18, 2018Copper Contributor
Please check the Item property from your Form.
I have entered the following selection ('OrderForm MCPD_1' is the SP datasource):
Faheem_Zafar
Sep 09, 2019Copper Contributor
This worked for me. Looks like for Custom Edit Form, SharePointIntegration.Selected in blank where as SharePointIntegration.SelectedListItemID has the ID value so we have to first fetch the Item by using your above formula which is:
If(IsBlank(LookUp('Active Proposals', ID = SharePointIntegration.SelectedListItemID)), First('Active Proposals'), LookUp('Active Proposals', ID = SharePointIntegration.SelectedListItemID))
Note that this is only true for 'Custom Edit Forms' and not if you are using a single default Form for both New and Edit cases.
Note: Specify your own data source (SP List name) here instead of 'Active Proposal' in above formula.
- BitPusherMar 02, 2021Copper Contributor