Hi @Christopher_20 ,
There are two ways of doing this
- Write the file name to a field the question list when you save it (full name and extension) OR
- Write the question item ID to the photo Library item in the Flow (which is what I do but a bit more complicated then the first option)
Going with the first option, and assume you have the file name applicable in a field called PhotoFile (change to your name) in your question list. Firstly, Collect the photos (this saves Delegation warnings on what is below)
ClearCollect(
colPhotos,
RenameColumns(
YourPhotosLibrary,
"{FilenameWithExtension}",
"FileName"
)
)
Now put an Image control in the Gallery with this in the Image property
LookUp(
YourPhotosLibrary,
FileName = ThisItem.PhotoFile
).'{Thumbnail}'.Large
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.