
Announcements
I have a Gallery.
Gallery Items: DataCollection
All data is populating one default and as I navigate through the Gallery items except the attachments.
There are two attachments per list/collection item, and I have two image controls in the Gallery.
Image: ThisItem.
I've tried all available options, none have displayed the images desired.
Hi @Phineas ,
Given the name of your data source, I assume it is a collection. Unfortunately attachments are not "collected", so you have to use LookUp() on the original data source to retrieve the attachments. Below are the codes for the first and second attachment:
First(LookUp(OriginalDataSource,ID=ThisItem.ID).Attachments).Value
Last(LookUp(OriginalDataSource,ID=ThisItem.ID).Attachments).Value