Skip to content
All posts

Power Apps: Save Photos / Pictures

PowerApps Image to SharePoint List: How to save pictures / images to a SharePoint list! This video will show you how to add/edit photos to a SharePoint record listing by using the image upload control.

We’ll use a low code tool like PowerApps to:

-PowerApps upload picture to SharePoint

-Power Apps upload image to SharePoint list

-PowerApps save image to SharePoint list

-PowerApps upload image to SharePoint list

-Power Apps Add Media

-Power Apps Save Image to SharePoint List

-Power Apps Add Image This code works best instead at what I have at the 15 minute, 25 second mark:

==================================================

 If(
 Len(Gallery1_4.Selected.Photo) = 0,
 If(
 IsBlank(AddMediaButton1.Media),
 SampleImage,
 AddMediaButton1.Media 
),
 If(
 IsBlank(AddMediaButton1.Media),
 Gallery1_4.Selected.Photo,
 AddMediaButton1.Media
 ) 
) 
==================================================

This video goes more in depth to it: https://youtu.be/-OZ-ys2pw0Y

– Darren Neese