
Announcements
Hello,
I use powerapps add media controle in order to load an excell file and then I save it in a collection with its name and contant. I noticed that powerapps automaticly stores content in blob storage and in fact the content displayed on the content row is a link like this: appres://blobmanager/...................................
On the other hand, I created a power automate flow to get the excell file from the power app and then stores it in sharepoint. But when I try to give the content to the file parameter as:
I am really blocked here and I've tried many suggested methods on web but none worked for my case. I'll highly appreciate your support.
Thanks
Hi , @Anonymous
Dose your input parameter in your flow is the file type ? If this , you need to pass the record in the flow.run() function.
Flow.Run(Record type)
You need to pass :
Flow.Run( {file: {
contentBytes: UploadedImage1.Image,
name: GUID() & "-test.png"
} })
Best Regards,
Yueyun Zhang