Hi everyone,
I am working on a PowerApps Canvas App where users should upload attachments using the Attachment Control. The uploaded files are in the format of pdf or zip and I store them in a Share Point document library using a Power Automate flow. (File name and content are sent to Power Automate via a Power Apps trigger)
Issue:
With(
{
_File:
With(
{
_JSON:
JSON(
First(DataCardValue3.Attachments).Value,
JSONFormat.IncludeBinaryData
)
},
Mid(
_JSON,
Find(
",",
_JSON
) + 1,
Len(_JSON) -
Find(
",",
_JSON
) - 1
)
)
},
JSON_Test_flow.Run(
First(DataCardValue3.Attachments).Name,
_File
)
)
appres://blobmanager/ba73eed30c48412ead7d4419566c3586/1"
instead of the actual binary data and fails. (ERROR:
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
mmbr1606
275
Super User 2025 Season 1