Data format?

Tags: #<Tag:0x00007efc620614f8> #<Tag:0x00007efc620613b8>

data = [[“Administrator System”, “No Certifications”], [“Example User”, “No Certifications”]]

I have the following data in an array, it’s putting the first pair in the first column, and the second pair in the second column.

They should be on separate rows and in columns.

Is this not right?

Hi @merlin2049er

This is correct behavior. The elements of arrays are treated as rows. If you need to have more control on data displayed in chosen columns you can use array of objects with column mapping: https://jsfiddle.net/handsoncode/5opck23w/ or re-structure the array of arrays data, if possible: https://jsfiddle.net/handsoncode/1rcx7wt5/