HI @bazz12 ,
Could you please share a bit more about your issue?
Which form do you create? A Edit form in standalone canvas app or a custom form in SP list?
1. If the form that you mentioned is a Edit form in your canvas app, please consider take a try with the following workaround:
Set the OnSelect property of the "Edit" button (click it to navigate to your Edit screen) to following:
Navigate(EditScreen, ScreenTransition.None);
ResetForm(EditForm1);
EditForm(EditForm1)
Set the Item property of the Edit form to following:
BrowseGallery.Selected
2. If the form that you mentioned is the custom form in your SP list, please consider take a try with the following workaround:
Set the OnEdit property of the SharePointIntegration control to following:
Refresh('YourSPList'); /* <-- add this formula */
ResetForm(SharePointForm1); /* <-- add this formula */
EditForm(SharePointForm1)
Set the OnNew property of the SharePointIntegration control to following:
Refresh('YourSPList');
ResetForm(SharePointForm1); /* <-- add this formula */
NewForm(SharePointForm1)
Set the OnView property of the SharePointIntegration control to following:
Refresh('YourSPList');
ResetForm(SharePointForm1); /* <-- add this formula */
ViewForm(SharePointForm1)
then re-publish your custom form to your SP list, then check if the issue is solved.
If the issue still exists, please consider re-move the custom form from your SP list, then re-create a new one for it, check if the issue still exists.
Best regards,