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
Copper Contributor
Please check the Item property from your Form.
I have entered the following selection ('OrderForm MCPD_1' is the SP datasource):
plaridel1
Nov 05, 2021Copper Contributor
this works for me with Excel tables.
*ID = table column name
If( IsBlank(
LookUp('table_RequestData', ID <> "")
),
First(table_RequestData),
LookUp('table_RequestData', ID <> "")
)
*ID = table column name
If( IsBlank(
LookUp('table_RequestData', ID <> "")
),
First(table_RequestData),
LookUp('table_RequestData', ID <> "")
)