I'm trying to create a row of numbers from an existing table and transpose the associated column numbers into the new sequence.
There are over 300 rows in the existing table to convert. Thanks.
Existing Table:
1000 100 100 50 75 55
1001 0 20 30 40 0
1002 30 40 0 60 100
New Table:
1000 100
1000 100
1000 50
1000 75
1000 55
1001 0
1001 20
1001 30
1001 40
1001 0
1002 30
1002 40
1002 0
1002 60
1002 100
There are over 300 rows in the existing table to convert. Thanks.
Existing Table:
1000 100 100 50 75 55
1001 0 20 30 40 0
1002 30 40 0 60 100
New Table:
1000 100
1000 100
1000 50
1000 75
1000 55
1001 0
1001 20
1001 30
1001 40
1001 0
1002 30
1002 40
1002 0
1002 60
1002 100