Hi @Thraxl1 ,
Could you show me
1)the forms' data source?
2)SharePointIntegration's OnNew, OnEdit,OnView,OnSave,OnCancel?
You should set like this:
1)forms' data source all to the same sharepoint list, in your issue is 'ISPS Avvik'.
2)form's Item all to :
If(IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),First('ISPS Avvik'),SharePointIntegration.Selected)
3)SharePointIntegration's OnNew:
NewForm(SharePointForm1)
//SharePointForm1 is form name
OnEdit:
EditForm(SharePointForm1)
OnView:
ViewForm(SharePointForm1)
OnSave:
SubmitForm(SharePointForm1)
OnCancel:
ResetForm(SharePointForm1)
Do not forget to save and publish your custom form.
You could try to refresh your sharepoint online page to check.
If the problem still exists, could you tell me how many records are in your list?
This may also be related by delegation limit.
Best regards,