Hi Power Apps community,
I am trying to create an App that permits users to upload images in a SharePoint List. I can only find videos and articles about how to upload images in a SharePoint Library or capture pictures with the app and save it in SharePoint List. However, I cannot find a solution to upload an image from my pc using Power Apps and save that image in a SharePoint List.
Is it possible to achieve this function with Power Apps?
Any help will be much appreciated.
Solved! Go to Solution.
Hi @JB0007 ,
You need an Add Picture Control. You then store it with a Flow - here is a Video on the process.
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 @JB0007 :
Thanks for @WarrenBelz 's solution.
Using flow is an effective and commonly used method,but I usually recommend the method of converting the image into a binary format for storage.
I've made a test for your reference:
My data source(List B):
Column (click to edit) Type
Title | Single line of text |
PIC | Multiple lines of text |
1\Add an add picture control(AddMediaWithImage1)
2\Add a button:
OnSelect:
Patch(
'List B',
Defaults('List B'), /*add a new record*/
{Title:Text(Now()),
PIC: Substitute(JSON(UploadedImage1.Image,JSONFormat.IncludeBinaryData),"""","")
}
)
3\add a gallery(Used to display saved pictures)
Items:
'List B'
Best Regards,
Bof
Hi @JB0007 ,
You need an Add Picture Control. You then store it with a Flow - here is a Video on the process.
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 @JB0007 :
Thanks for @WarrenBelz 's solution.
Using flow is an effective and commonly used method,but I usually recommend the method of converting the image into a binary format for storage.
I've made a test for your reference:
My data source(List B):
Column (click to edit) Type
Title | Single line of text |
PIC | Multiple lines of text |
1\Add an add picture control(AddMediaWithImage1)
2\Add a button:
OnSelect:
Patch(
'List B',
Defaults('List B'), /*add a new record*/
{Title:Text(Now()),
PIC: Substitute(JSON(UploadedImage1.Image,JSONFormat.IncludeBinaryData),"""","")
}
)
3\add a gallery(Used to display saved pictures)
Items:
'List B'
Best Regards,
Bof
@v-bofeng-msft Thanks for this direct PA solution, works fine. No Flow needed. 😀 Gr. Lex
This looks like just the solution I was looking for! Everything works just like you laid out but the image does not show up in the Gallery view. I don't even have the option to assign my binary data to the image control in the gallery. Is there something I'm missing?
Thanks!!
a question can these images be sent by mail from powerapps?
@v-bofeng-msft Thank you for your response as this is the only solution that has seemed to work for me. How do I go about mass converting these into a folder of images while keeping some sort of tags to sort and filter them? Thanks!
User | Count |
---|---|
247 | |
105 | |
82 | |
50 | |
43 |