I have numerous documents (mostly .pdf files) in a document library on SharePoint. I want the users to be able to select multiple documents in the app and launch all at once. a separate tab in the same browser window would be ideal.
What is the best way to do this?
Solved! Go to Solution.
Hi @djg ,
Yes, I realise this now - I have seen this before I while ago.
The Power Apps code actually works, but this issue is that the browser will not open more than one new tab, so the last one ends up showing, with each replacing the one before. So to answer your question now, you cannot do it.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @djg ,
Something like this
ForAll(
Filter(
YourGallery.AllItems,
YourCheckbox.Value,
Launch(YourURLField)
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
@WarrenBelz I tried this but only the item for the last selected checkbox opens
Hi @djg ,
Yes, I realise this now - I have seen this before I while ago.
The Power Apps code actually works, but this issue is that the browser will not open more than one new tab, so the last one ends up showing, with each replacing the one before. So to answer your question now, you cannot do it.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
User | Count |
---|---|
162 | |
95 | |
77 | |
72 | |
58 |
User | Count |
---|---|
216 | |
166 | |
97 | |
96 | |
74 |