I’ve always used Start conditions to display information row by row in an email attachment template.
However, I’m not aware of a way to display more than one row from an Appsheet data source in the same table row in a Template.
For example, I have a table in an Appsheet data source that has one image in each row.
I can use a start condition to display the images with one image in one row in a table in an email attachment template.
Is there any way that I don’t know of that you could have a table in a Google Doc template and then display the image from row 1 of the source table in the first column of the template, then the image in the 2nd row in the 2nd column, and so on?
You can do something resembling what you have by following this video https://www.youtube.com/watch?v=Cd4U4IyO6qg and creating two tables side by side, each containing rows with ODD [_ROWNUMBER]s and EVEN [_ROWNUMBER]s respectively. (use <<START: SELECT(table[key], MOD([_ROWNUMBER],2)=1))>> … <>)
It might be tough to get the exact formatting you want (maybe never get there…).
One question, does your solution show one picture per cell or do they all appear in one cell vertically (no cell frames)? I tried to do one picture per cell and ended up with the solution I proposed.
Good point @TeeSee1 . Yes, the template shared by me will place all the images in one cell vertically. Your approach of taking the <> statement out of cell is nice one. Thank you for making that subtle but important difference clear.