i'm a bit confused with the functionality of Combo box and how to retrieve items that have been selected.
i currently have set the "defaultselecteditemsproperty" on the combo box to a table using the code below. The strange thing is that the item is selected but is not highlighted, making me doubt that it is actually selected. And when i try to then grab the default selected items to patch to the data source it just overwrites what was there before with a blank.
Basically, my question is how to show comma separated values from a text field in a combo box as the selected values
OnStart
DefaultSelectedItemProperty
ForAll(Filter(col_DefaultGroupChecks, On=true), Title );

OnVisible (i'm grabbing the values currently in SharePoint and storing them in a collection )
ClearCollect(col_DefaultGroupChecks, AddColumns(col_GroupChecks.Title, "On", Title in Split(global_selectedGames.GroupChecks,",")));
when Updating i just Patch
Patch(Datasource,
{'Group Checks':Concat(cb_scrUpdate_GroupChecks_1.SelectedItems.Title , Title & ",") }
)