
Please tell me how to send images via Power Apps and display them in Power BI.
I know that I can send images (Base64 format) with Power Apps.
However, I want to display the images in Power BI, so I tried to use Power Automate to store them in a Sharepoint list (Binary format) and Azure Blob Storage, but I couldn't figure out how to do it and it didn't work.
Maybe this is something I should have asked in the Power Automate forum, but if anyone knows how to display images sent from Power Apps in Power BI, please let me know.
Best Regards,
Lopez
The following formula solved the problem.
Patch(
Sample,
Defaults(Sample),
{
Title:Text(Now()),
Image: Substitute(JSON(UploadedImage.Image,JSONFormat.IncludeBinaryData),"""","")
}
);