Hi @FARIDMD,
The SharePoint attachments column allows multiple attachments, hence the table format. Displaying this information depends on your specific requirements. Below I have displayed some possible options:
(1) Each row will have max 1 attachment:
Use a gallery to display the rows of your collection, within that gallery add a label for the attachment name with the following code in the Text property:
First(ThisItem.Attachments).DisplayName
(2.1) Each row will have multiple attachments - option 1
We will keep the single gallery approach and simply concatenate the names of the individual files. The following code needs to be written in the Text property of a Label within the collection gallery:
//E.g Name1, Name2
Concat(ThisItem.Attachments, DisplayName, ", ")
(2.2) Each row will have multiple attachments - option 2
Use an extra gallery to display the attachments of the selected item in your main gallery. The subgallery items' property would be:
MainGalleryName.Selected.Attachments
If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.
Thanks!