How do I remove all first items of lists in a list

Hi all,

Hope you can help me with this.
I’ve imported data from excel including the headers.
Now I have a list of lists and want to remove those headers.
The way I do it now is via a codeblock with:
header1 = list[0];
header2 = list[1];
etc.

and a “List.DropItems” after the code block.
But this takes up a lot of nodes!

Is there a way I can do this upfront so I don’t need all the “DropItem” nodes?

You have several options:

The important thing is to set the node to work on the appropriate level (the green underlines)

2 Likes

NICE!!!
Thanks! :thumbsup: Never knew levels like this excisted!
Still early in the morning here but I already learned something today! :grinning::grin:

1 Like