Hello, forum.
I have an excel sheet with time-series data for several items, where each row represents a different year. Something like this:
Item Var 1 Var 2 ...
A 5 10
A 6 10
A 8 20
B 1 33.7
B 2 29
B 0 24
.
.
.
And so on.
I'm trying to create a separate sheet for each variable that will list each item as a single row and have the sequential values of that variable as columns. So Sheet1 would look like this:
T1 T2 T3
A 5 6 8
B 1 2 0
Sheet2 would be similar but for variable2, and so on.
Can anyone help me figure out how to do that? I've looked around this forum and basic googling but no luck. Maybe there's a way to use modular counting to skip cells in an if statement, but other than that I don't have many good ideas.
The variables are all numbers and there are an equal number of samples (10) for each member of the population.
Thanks in advance for your help and I'll answer any questions you need.
I have an excel sheet with time-series data for several items, where each row represents a different year. Something like this:
Item Var 1 Var 2 ...
A 5 10
A 6 10
A 8 20
B 1 33.7
B 2 29
B 0 24
.
.
.
And so on.
I'm trying to create a separate sheet for each variable that will list each item as a single row and have the sequential values of that variable as columns. So Sheet1 would look like this:
T1 T2 T3
A 5 6 8
B 1 2 0
Sheet2 would be similar but for variable2, and so on.
Can anyone help me figure out how to do that? I've looked around this forum and basic googling but no luck. Maybe there's a way to use modular counting to skip cells in an if statement, but other than that I don't have many good ideas.
The variables are all numbers and there are an equal number of samples (10) for each member of the population.
Thanks in advance for your help and I'll answer any questions you need.