I am putting together a shopping-cart-esque request app. I want the user to select multiple items from a gallery and a drop-down action, then add it to the collection. Currently, when multiple items are selected from the gallery and submitted once, it saves each selection as its own row in the collection. Is there a way to combine the selections, perhaps separated by a comma or vertical space, rather than an individual row? I want each selection of the Add Icon to create a new row, not every gallery selection to create its own row.
Here is the app:

Here is the collection:

I would like to see one Inactivate row with all the gallery selections listed in the next column, separated by a comma or vertical space, not individual rows. If they were to submit another Inactivate request, I would want that and its gallery selections to create a new row.
My OnSelect property for the Add Icon is:
Collect(CollectionMassRequest, {
Action: DropDown_Action.Selected.Title,
Documents: Gallery_Documents.Selected.Checkbox_Document.Text
})
Please let me know if I can explain further. Thank you in advance! I very much appreciate the support available on these forums.