I have a one-column list called User. I use this as a lookup column on another list called Bookings that uses Title as the view field.
When I try and update the lookup column in Bookings from my powerapp I get an error saying ID: The specified column is specified by the server and can't be updated.
Patch(Bookings,Defaults(Bookings),LookUp(Bookings,ID = selectedID),
{
User: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id: 1,
Value: "A Person"
}
}
)
I have confirmed that 'ID:1' and 'A Person' match in Users. I have searched google and no one seems to be having this problem so I must be missing something. Does anyone know what I'm missing? Thanks.