I am using Appointments table in dataverse where i have created Account Name as the lookup column from the Accounts table.
I am using NewForm in canvas app where Account Name is a combobox which is getting populated from the Accounts table in dataverse
Items Property of Account Name (multiselect enabled)
Choices([@Appointments].'Account')
When i try to save multiple value using below Patch function, it throws error. It works fine when i save single value using the code ComboBox1_3.Selected.
May i know whats the issue here?
Patch code on Save
Patch(Appointments, Defaults(Appointments),{ 'Account': ComboBox1_3.SelectedItems})