Hi I'm new to Dataverse, notes table and power apps and power pages.
I need help retrieving a specific file every time user starts to upload into my Power Page and add a data in table row.
Here is my existing flow and the result is that the document is blank.
Thank you for your help.
Solved! Go to Solution.
This is not the correct forum this type of question. But to answer your question, the file when stored in Notes is Base64 encoded, you will need to decode it / convert it to binary (base64ToBinary) before or as you write it in the File Content
This is not the correct forum this type of question. But to answer your question, the file when stored in Notes is Base64 encoded, you will need to decode it / convert it to binary (base64ToBinary) before or as you write it in the File Content
Hi, you'll need to convert the note document body first to binary since it is in base64.
Try this base64ToBinary(triggerOutputs()?[‘body/documentbody’])