Hi
I have created a canvas app in Power Apps based on Dataverse tables.
In the app it is possible to upload a file from the desktop to Sharepoint using Power Automate.
However - now I would like to add some properties to the file saved in Sharepoint (a reference to find the files relatede to a certain group).
On a "upload"-button in Power Apps I have this code in "onselect":
-------------
ForAll(
DataCardValue226.Attachments;
Upload_Produkt_Bilag.Run(
{
file: {
contentBytes: ThisRecord.Value;
name: ThisRecord.Name
}
}
)
)
-------------
What should I do to paste eg. the value from gallery1.selected.productnumber in the column with the red circle?
I have tried several solutions, but none of them works for me... (it still loads the file to Sharepoint, but the "productnumber is not loaded to the column)
wkr Jørgen