Hello fellow PowerApps users!
In my application I'm trying to patch a SharePoint list using a button:
OnSelect:
Patch(
'MyList',
LookUp(
'MyList',
'Customer ID' = CustomerList.Selected.'Customer ID'
),
{'Area/Departments':AreaDept_ComboBox.SelectedItems}
)
However, the app throws an error: The specified column '_' does not exist. The function 'Patch' has some invalid arguments. Well, Area/Departments column does exist in my SharePoint list. It is a Choice column I should mention.
Could you please help me with finding a root cause for this error? I have spent hours digging this forum and others for a solution and found none. Any feedback would be greatly appreciated.