Is array column an option in glide tables

I’m using glide tables, not sheets. can I do arrays? I cant find in docs how to do this?

I think this thread may answer your question.

You can create single columns, join them together in a template column, let’s say using a comma to separate them, then split them into an array using the split text column.

2 Likes

Can I use a List to display the arrays on the Split Text Columnn?

No you can’t. Lists are derived from rows, not arrays. There’s ways to do it, but you first need a table with the maximum number of rows you could possibly have to match the maximum number of array items you could possibly have. Then a column to sequentially number each row in order. Then duplicate that array on every row using a single value column. Then use a single value column against the array to pull out a single array item using the ‘from start’ option and using the sequentially numbered column as your value from the start.

2 Likes