I am trying to patch to a SharePoint List with a Choice Column. It works throughout the rest of my app but the same code isn't working here for some reason.
The highlighted section is the part that wont work. I have a drop-down field called ApprovalNeededInput which pulls the options from the list just fine. Neither option will write to the list.
Patch('Retired Documents', Defaults('Retired Documents'),{Title: Text(RetiredTitleInput)}, {Reason: Text(RetiredReasonInput)}, {'Approval Required': ApprovalNeededInput.Selected}; {'Requested By':{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & RetiredRequesterInput.Selected.Mail,
Department: "",
DisplayName: RetiredRequesterInput.Selected.DisplayName,
Email: RetiredRequesterInput.Selected.Mail,
JobTitle: "",
Picture: ""
}}; {Approvers: ApproversCollection}, Form1.Updates)