Hi @JerryH ,
I see syntax errors in your code, try to change the code as below:
If(isAdmin,Patch(HelpDesk,Lookup(helpDesk,ID=SelectedTicket.ID),{
priority:{
'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id:1, // This need not be the ID of the dropdown selected value
Value: createTicketScreenPriorityDropdown.SelectedText.Value
},
Category:{
'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id:1, // This need not be the ID of the dropdown selected value
Value: createTicketScreenCategoryDropdown.SelectedText.Value
},
TaskStatus:{
'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id:1, // This need not be the ID of the dropdown selected value
Value: createTicketScreenStatusDropdown.SelectedText.Value
},
PercentComplete:EditTicketScreenCompletedSlider.Value/100,
AssignedTo:{'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims:"i:0#.f|membership|" & AssignedToUserName.Email,
Department:"",
DisplayName:AssignedToUserName.FullName,
Email:AssignedToUserName.Email,
JobTitle:"",
Picture:""
},Description:EditTicketScreenDescription.Text}))
The above one is for the first Path what I have done is I am closing the choice and people fields accordingly.
I hope this resolved your issue if you see any challenge/need further help please let me know I am always happy to do it for my community.
Regards,
Krishna
If this post helps you give a 👍 and if it solved your issue consider Accept it as the solution to help the other members find it more.