Hi everyone,
I was given a data set that listed header fields in a column format. I need to extract the data and make them rows so I can do a data comparison against another data set.
Example.
Name Jayme
date 032315
id 5
state IL
I want it to look like
Name Date ID State
Jayme 032315 5 IL
Any Ideas? Transpose did not work for this.
I was given a data set that listed header fields in a column format. I need to extract the data and make them rows so I can do a data comparison against another data set.
Example.
Name Jayme
date 032315
id 5
state IL
I want it to look like
Name Date ID State
Jayme 032315 5 IL
Any Ideas? Transpose did not work for this.