
Announcements
I am new to powerapps and am using it to build forms for a SharePoint list.
I want a different form for create versus edit.
On Create the users only needs to fill in about 5 fields.
Our business process is that a few weeks later they come back and edit the list item and update most of the other fields.
The edit form has about 20 fields.
The issue is the edit form is not showing when the user edits the list item using the Edit all button
The settings in SharePoint Integration in powerapps are:
Can anyone help with what I am doing wrong?
Thanks
Amanda
@Anonymous
Assuming that your new and edit forms are on separate screens, you would need to navigate the edit screen in the call to OnEdit.
Set(SharePointformmode, "Updatecontract");
EditForm(updatecontractform);
Navigate(EditFormScreen)