Hi, I'm trying to Patch a SharePoint Column, from a previous solution I got a code that kinda works, but whenever I click on the button to Patch the function I receveive the following error: "Network Error when using Patch function: The requested operation is invalid". Anyone knows how to resolve this problem?
This is the code:
Patch(DB, Defaults(DB),{
'Title':"1",
'Person 1':[{
Claims: Concatenate(
"i :0w.f|membership|",
User().Email
),
Department: "",
DisplayName: User().FullName,
Email: User().Email,
JobTitle: "",
Picture: ""
}
}])