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?


