Within a gallery object, I have various checkboxes that when selected populate into a collection. I have successfully connected that collection to my primary database and have a patch method that can save dates and text. My problem is I cannot get the attachments control to duplicate/save the items to the many database records identified by the collection. Any prospective solutions?
ForAll(
collection,
Patch(
datasource,
First(Filter(datasource, collection_col_name = 'RecordID')),
{
column1: DataCardValue2_5.SelectedDate
// Attachments: DataCardValue23.Attachments
}
)
)