I'm facing a problem.
I'm trying to get attachments of multiple records in a SharePoint list
My SharePoint list is named "DocList"
I have a Gallery named DocListGallery that contains 10 records of "DocList"
I want to get Attachments of each of 10 records and store it on a collection named AttachmentsFilesCol
Here's what i've made :
Clear(AttachmentsFilesCol);;
ForAll(
DocListGallery.AllItems As Item;
Collect(
AttachmentsFilesCol;
First(Item.Attachments)
)
)
This is not working as i'm receiving an error "The specified column attachments is not accessible on this context"
The First() property is because i autorize only 1 attachment per record so in my case i can use First.
Thanks for your help because it's annoying :(