How do you Convert a list into a table list of lists?

Hi everyone!
I want to make many lists from given list. Want to make a table (list of Lists). Here in this example the desired result is (a,b,c,d)(e,f,g,h) Where am I wrong. Please guide me.


Thanks.
ListOfList.aia (2.6 KB)

Here is one way (assumes start list is in multiples of 4)
image

OR..

1 Like

If you have control over your text input, you can insert '\n' between rows.
That sets the input up for feeding into a csv to table block.
A1,B1,C1\nA2,B2,C2\nA3,B3,C3

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.