I have a powerapp Gallery with SharePoint as the datasource. Need to implement Download All functionality using a button which downloads selected documents from gallery
Below code only downloads the first checked document from Gallery. It doesnt download multiple files. May i know why?
Gallery Items property
Filter(
Documents,
Submission_ID = DataCardValue3_3.Text
)
Download All Button OnSelect
ForAll(
Filter(
Gallery5_10.AllItems,
Checkbox3.Value=true
)As TempLoad,
Download("https://abc.com/sites/abc/subsite" & TempLoad.'Full Path')