
I made a column in my SharePoint list a hyperlink and that works fine, but when I put in this code on the OnStart Section of my app and test it I get a Getting Data Screen that never goes away.
Set(
varID,
Param("ID")
);
If(
Not(
IsBlank(varID)
),
EditForm('CAR Form'),
ViewForm('CAR Form')
);
I want to be able to select the hyperlink and data that was submitted be there to either view or edit.
Hi , @lbolin
According to your description, you pass the ID param in the url, so the code will go into this:
EditForm('CAR Form') , but in your side , you get a Getting Data Screen.
So you need to check your Form- item property. You need to check if it retrun a record in your data source so that it can show in your Form.
Best Regards,
Yueyun Zhang