Sounds like you want something like this, where we made up some random data, then created a column that separates the odd and even values.
The Odd and Even numbers are created using an Expression column. The expression uses the built-in row counter ‘#’ and you specify the number of rows.
Another expression column is used to pull the values using the column name followed by the index in parentheses.
You could also do it in one step, such as “Data(#*2-1)” and “Data(#*2)” and use a variable for the column length if that changes all the time.
Does that help?