I have a gallery where you select multiple values and it puts the values in a collection:
OnSelect = Collect(Collection_Name,ThisItem)
The current code I am using to send Collection_Name to the SharePoint list is:
OnSelect = Patch(Sharepoint_Name, Defaults(Sharepoint_Name), { Column_Name:Collection_Name } )
Column_Name is a choice column that takes multiple selections.

The error I get is "Expecting a table value, but of a different schema" and "Missing column. Your formula is missing a column 'Value' with a type of 'Text'.
How do I send Collection_Name to a column that takes multiple values?