Dear,
I am currently struggling with the following scenario.
A form (based on a SharePoint online list is split over two screens. I want use a variable to identify the the SharePoint list items that needs to be altered (i.e. added information) on the second screen.
Unfortunately, I am struggling here - and would appreciate some more guidance, as the information I found here does not get me further.
What I have is:
On Screen 1:
Submission button:
Set(varIndexfolge;Max('CHX-Kalkulationsanforderungen';Indexfolge)+1);;
SubmitForm(Form1)
onSuccess:
Set(varCreationID;Self.LastSubmit.ID);;
Patch(
'CHX-Kalkulationsanforderungen';
{ID: Self.LastSubmit.ID};
{'PM fertig': true}
);;
If(Self.LastSubmit.'sofortige SAP-Anlage';
Navigate(PM_DefinitionScreen_immediate_Creation;ScreenTransition.Fade);Navigate(End_Success;ScreenTransition.Fade));;
ResetForm(Form1)
on Screen2:
DefaultMode:
FormMode.Edit
Item:
Filter('CHX-Kalkulationsanforderungen';ID=varCreationID)
What I expected is that I would be able to amend the information that was entered on Screen1 on Screen2.
But I see an error stating that a "record value is expected".
This corresponds to the variables definition screen

What am I missing here?
Thank you for your support,
regards
Philip