Hi,
I just published my first powerapp form. Since doing so I can't seem to edit existing sharepoint list items. Instead when I click on an existing item to edit it I get the new form for my list. What could I have messed up with this?
Thanks!

Hi,
I just published my first powerapp form. Since doing so I can't seem to edit existing sharepoint list items. Instead when I click on an existing item to edit it I get the new form for my list. What could I have messed up with this?
Thanks!
Hi @tylacha ,
In your customize form, check the OnEdit property of the SharePointIntegration control:
EditForm(SharePointForm1)
And, the Item property of the SharePointForm1 control:
If(IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),First([@list1]),SharePointIntegration.Selected)
Best regards,