Hi All,
I am kind of a newbie in PowerApps. I have tried a few solutions from the community but could not find a solution that would work. I have an attachment control where I want to be able to add multiple images at a time. I was able to get everything set up and the data is being saved in the backend SQL server properly. However, I have another column which is basically a base64 string of the same binary image. I tried this code but it is not showing up the entire base64 string. For some reason, it is only showing one line.
ClearCollect(varCollections, ForAll(AttachmentControl.Attachments, {
image: Value
, image_base64: Mid(JSON(Value, JSONFormat.IncludeBinaryData), 25, Len(JSON(Value, JSONFormat.IncludeBinaryData))-25)
,requester_email: User().Email}))
This is the front-end. I created a gallery which shows the binary and base64 along with the image. Gallery is connected to the attachment control. The second line is image_base64 but it is not showing the entire base64 string. Any idea?
