Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: jodycrutchfieldI have 2 data sets
set 1:
1 a 3 1
1 b 3 2
1 c 3 3
set 2:
2 h 4 1
2 j 4 2
2 k 4 3
I want to insert set 2 into set 1 after the row where column 2 = b.
my final set should be:
1 a 3 1
1 b 3 2
2 h 4 1
2 j 4 2
2 k 4 3
1 c 3 3
Is there a simple way to do this without writing a custom python node?
Thanks,
Jody