Please follow this:
1.Have a Form1 and Gallery1
Items property of the Form1 : Gallery1.Selected
2. Insert an Icon1 or button1 into Gallery1
Set the Onselect of the Icon1 to; Set(CollectionName,ThisItem) . This will create a collection of the item clicked
3. Insert a another button2 on your screen not in the gallery and put the onselect to the following Patch:
Patch('[dbo].[DataSource]',Defaults('[dbo].[ DataSource]'),
{FirstName: CollectionName. FirstName,
ReceipientName: CollectionName.ReceipientName,
FullName: CollectionName.FullName,
EntryDate: CollectionName.EntryDate})
Note; Point 2 above would create the collection1 while point 3 would insert the created items in the collection into your dataSource
Kindly change the datasource and column names to yours.
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."