I have a table in which I need to make the column headers part of the data in the table as well as making the data, which is curretly listed horizontally, listed vertically instead. This is what the table looks like now:
RID Cheese Type 1 Cheese Type 2 Cheese Type 3 etc.....
200 1 5 7 etc.....
201 10 3 etc.....
But I need it to look like this:
RID Type Vol
200 Cheese Type 1 1
200 Cheese Type 2 5
200 Cheese Type 3 7
201 Cheese Type 2 10
201 Cheese Type 3 3
I would just do this manually, but there are 47 columns and 1500 rows of data so I'm hoping there's an easier way to do this. Any help would be appreciated!
RID Cheese Type 1 Cheese Type 2 Cheese Type 3 etc.....
200 1 5 7 etc.....
201 10 3 etc.....
But I need it to look like this:
RID Type Vol
200 Cheese Type 1 1
200 Cheese Type 2 5
200 Cheese Type 3 7
201 Cheese Type 2 10
201 Cheese Type 3 3
I would just do this manually, but there are 47 columns and 1500 rows of data so I'm hoping there's an easier way to do this. Any help would be appreciated!
Last edited: