I have a new form in powerapps which is created on top of the dataverse table. I am able to attach multiple attachment to the attachment column and submit the record.
I have another screen to view the created records but in the view forms, I am able to see only the last single attachment. Is it possible to view all the attachments in the form view mode? I only managed to create following formula in default property of Attachment field but it shows only last attachment uploaded. How I can iterate through attachments?
//Creates table to display all attachments
Spoiler (Highlight to read)
If(!IsBlank(ThisItem.Attachments.FileName), Table({DisplayName: ThisItem.Attachments.FileName, Value: ThisItem.Attachments.Value}), Blank())
If(!IsBlank(ThisItem.Attachments.FileName), Table({DisplayName: ThisItem.Attachments.FileName, Value: ThisItem.Attachments.Value}), Blank())