Create new lists from same indices in multiple branches

Hi guys, I did my best on the title of this post but hopefully I can explain what I’m trying to do. I have 3 sets of points. Each set is in their own branch and what I want to do is take the points in each set that have the same index number and create a new list set. So, to better describe, my current list is this:
{0}
0 | Point 0A
1 | Point 0B
2 | Point 0C
{1}
0 | Point 1A
1 | Point 1B
2 | Point 1C
{2}
0 | Point 2A
1 | Point 2B
2 | Point 2C

and what I want to create/re-organize from this list it is this:

{0}
0 | Point 0A
1 | Point 1A
2 | Point 2A
{1}
0 | Point 0B
1 | Point 1B
2 | Point 2B
{2}
0 | Point 0C
1 | Point 1C
2 | Point 2C

How do I go about re-structuring my list to achieve this? Thank you so much!

Use “Flip Matrix” component

You’re not trying very hard.

flip_matrix_2020May15a

1 Like