
I have a Sharepoint Communication site and a SharePoint List "Houses" and two image columns in the list, House1 and House2.
Since the site is a communication site, list images are stored in Site Assets.
In Power Apps canvas app I have a gallery which shows items from Houses list, and images House1 and House2 and names from fields Pic1Name and Pic2Name.
I want to place Button1 and Button2 in the gallery item which downloads the images House1 and House2 with given names.
I want to do this without Power Automate. Is it possible?
hey @Finnair
you can try this:
Set(House1URL, Concatenate("https://[YourSharePointSite]/SiteAssets/", ThisItem.Pic1Name));
Set(House2URL, Concatenate("https://[YourSharePointSite]/SiteAssets/", ThisItem.Pic2Name));
onselect of button:
Launch(ThisItem.House1URL)
button2:
Launch(ThisItem.House2URL)
Let me know if my answer helped solving your issue.
If it did please accept as solution and give it a thumbs up so we can help others in the community.
Greetings