Hi @cyberco01,
Do you want to write the repeating table back to the excel table?
Could you please share a bit more about your scenario?
Actually, to export Gallery data to excel, you just need to save the gallery items into a collection and write this collection to your excel. To make this happen, you should make sure that you have some existing columns to store the column values from the Gallery.
Add a save button and set the OnSelect property as below:
ForAll(
Gallery1.AllItems,
Patch(
'ExcelTable',
Defaults('ExcelTable'),
{
Column1: GalleryTitle1.Text,
Column2: GallerySubtitle1.Text,
Column3: GalleryBody1.Text,
...
}
)
)
Of course you could check the video from @RezaDorrani to create a CSV table.
Hope it could help you at some degree.