I have a large amount of data that needs to be split into two rows (based on how it is configured)
Like the following example:
A
B
C
D
E
F
G
H
...etc
What I am looking to get is
A B
C D
E F
G H
So the data is sorted (every other) into two columns.
Like the following example:
A
B
C
D
E
F
G
H
...etc
What I am looking to get is
A B
C D
E F
G H
So the data is sorted (every other) into two columns.