Re: Select and Download Multiple Files
Hi @pruferk,
Do you want to download multi pdf attachments?
I have a test on my side, please take a try as below.
1). Add a Checkbox within the Gallery and set the OnCheck as below:
Collect(colAttach,ThisItem.Attachments)
Set OnUncheck as below:
Remove(colAttach,ThisItem.Attachments)
2). Add a button outside the Gallery and set the OnCheck as below:
ForAll(
RenameColumns( colAttach,"Id","MyLink") ,
Download("https://domain.sharepoint.com/sites/sitename" & Substitute(
MyLink,"%252f", "/"))
)