Show image gallery

I am trying to make an image gallery with images that are in different tables. but instead of a gallery view I see a Long Text column, with the list of the paths of each image separated by commas.
The virtual column where I have the following formula is of type List and its Element Type is Image.

SELECT(Reparaciones[Foto del equipo (Frente)],[Rep Id]=[_THISROW].[Rep Id])+
SELECT(Reparaciones[Foto del equipo (Atrรกs)],[Rep Id]=[_THISROW].[Rep Id])+
SELECT(Items Rep Int[Imagen 1],[Rep Id]=[_THISROW].[Rep Id])+
SELECT(Items Rep Int[Imagen 2],[Rep Id]=[_THISROW].[Rep Id])+
SELECT(Items Rep Int[Imagen 3],[Rep Id]=[_THISROW].[Rep Id])

Even with just one SELECT I get the same result. How should I do to achieve what I want?

0 2 338
2 REPLIES 2

Iโ€™m not sure you can do that; i guess you have to set the coloumn as โ€œimageโ€, so every photo need its own coloumn.

Steve
Platinum 4
Platinum 4

The process youโ€™re using is not how youโ€™d create a gallery. A gallery view sits atop a (data) table, so your images must be described in rows of a table.


Top Labels in this Space