i need Hello,
I'm a newbie, need help to store each file from attachment control which is on a editfrom to my sharepoint list
- attachment control name: Controlattachments
- Editform Name: Form4
- Sharepointlist name: ARCHIVAGEIMP
This code below stores all the files into a single element on sharepoint:
ForAll(
Controlattachments2.Attachments;
Collect(
colFinalAttachments;
{
Name: Name;
ContentBytes: Value
}
)
Please note i use semi colon on my code because this is the french version of the power apps which is slighly different.
I need to store each file to a seperated element as attachment and for the name i need to add the name if the file+ the string "SP" at the end of the filename.
Any suggestion?