Hello together,
I want to create new entries in my sharepoint list (List1) by using a powerapps page. For one column I have a ComboBox in powerapps because I need the possibility to patch one or more choices. In my sharepoint list multiple selection is allowed.
My code:
Patch(
List1;
Defaults(
List1
);
{Column1: ComboBox1.SelectedItems}
)
I get the error message "missing colums. In your formula is missing a column "value" from type "text" and "invalid argument type. a table value is expected but with a different schema".
In my formula I have some more columns to patch, but just with textinput. These are working fine if I try without the combobox column.
Can anybody help me here?
Thanks in advance
Lukas