Let’s say I have Table A and Table B. I have Image X uploaded in Table B. How do I display this same Image X in a cell in Table A?
I tried putting a “select list” type of column in Table A, and then doing a lookup on a column of images in Table B. Unfortunately, in Table A, the images don’t show up as thumbnails, only the image filenames are shown.
So far I’ve just copy-and-pasted Image X from Table B to Table A, but this is not ideal because I don’t need to have unnecessary duplicates. I just want to have Table B containing all my images, and then be able to lookup and display any Table B image in a Table A cell.
Thanks so much @Federico_Stefanato - I appreciate the help and the warm welcome! I tried this but haven’t yet gotten it to work – hope you can have a look? Here is the sample doc: Sample
Hi @Feanne ,
I updated your doc.
I guess that the misunderstanding was due to the name…
Print is both the table AND the column
So in your table you had to write
thisRow.Print.Print
the first one denotes the Print column of Garments table (which contains a Print lookup row), the second is the Print column of the Print table, that contains the image.
By the way, is there a way for me to enable “multiple selections” for the “Print” column, while still displaying images in the “Image” Column? I tried it just now and when I turn on “multiple selections”, the images disappear.
Yes, you can do it as well, (again: you can find the solution in the shared document).
Basically, you have to take into consideration that Print is now a List of Print objects, therefore the Image column will be a list of images: thisRow.Print.FormulaMap(CurrentValue.Print)
To have a better control of images size, have a look a this post
Yay it works perfectly now! Thanks so much @Federico_Stefanato for your kind help! I really appreciate it. I’m such a beginner at this type of coding, I really have a lot to learn.
Hey there,
Sorry to revive this old topic but I don’t think I’m managing to do whatever it is you’re describing above.
Essentially I have a table with one image on each row, which I use as a lookup with multiple selection on another table. I try to add another column which brings in the image from the first table but this fails. On the formula window, the result displays as a list of images but the cell is always empty. Mind you this works fine if I disable multiple selection.