Hello,
Maybe you can help me out with the below:
I am using the patch function to update my record. The formula is correct and does not give me errors but it does not update my record in SharePoint list as intended:
Patch('Intake Copy2',LookUp('Intake Copy2',[@ID]=IntakeGalery.Selected.ID),{Status:{Value:"Completed"}});SubmitForm(IntakeForm);
It seems correct but it is not updating the record when I click that button.
When I add a patch for a new record: it works, it creates a new record on completed:
Patch('Intake Copy2',Defaults('Intake Copy2'), {Status:{Value:"Completed"}});SubmitForm(IntakeForm);
For a context: I am building the App from scratch and connected to my existing ShatePoint List (IntakeCopy2)
I am not sure where the problem could be.
Many thanks in advance.