Hi all,
I am trying to update an existing record of a SharePoint list using the Patch Function.
I am needing to use variables for some of the values.
Patch('Record of Biosecurity Zone Status Changes',
{ID: varZSCPlanId},
{ApplicationStatus: {Value: varZSCTransactionType},
'Reviewed By': varCurrentUser.Email,
'Modified By': varCurrentUser.FullName,
'Review Comments':Substitute(txtReviewComments_ZSC.Text,"""","'")
);
This the code I am currently using however I am getting the following errors:
"The function "Patch" has some invalid arguments",
"Unexpected characters. The formula contains "ParenClose" where "CurlyClose" is expected.
Any insight on this would be greatly appreciated