Split a list into 2 different lists

Dear friends

I am stuck in a part of my script. I tried to split a list into two lists and extract each list separately to be able to write them into separate columns in Excel. I used Springs.List.Split node to split the list to list 1 and list 2, but when I watch list 1 or list 2, it shows me the whole list (252 cases), but it is supposed to give me 126 cases. Does anybody know how it can be solved? Thanks

You can use GetItemAtIndex after Transpose: one time with 0, one time with 1.

2 Likes

Thanks my friend, @lucamanzoni

It was solved. I could also do it by List.FirstItem and List.LastItem

Thanks

Splitting%20a%20list%20into%202%20lists(Solved)