Map an Array to a Column

Does anybody know how to map an array to a table column on index?

Screen Shot 2021-12-16 at 5.14.30 PM

Trying to map this array to a column within my table on my index. Passing state1.value to the mapping causes each row to show the entire array. Expected outcome is row[0] = arr[0] and so on.

Hey @ks23ever!

Happy to help here! In your mapper could you try something like:

{{state1.value[i]}}

i should evaluate to the index of the row

so simple! :joy: thanks so much this worked!

Awesome! :slight_smile: