I need to transpose records from a table, but by groups like shown in the example below. I need to do this for many records identified by a row number at the beginning of the table.
Need to transpose From:
1 LastModified$Time 2011-05-10 12:57:03.0
1 Count1 0
1 Count2 58
1 LastModified$UserName mbeardsell
2 LastModified$Time 2010-03-31 21:45:53.0
2 Count1 0
2 Count2 0
2 LastModified$UserName MBeardsell
3 LastModified$Time 2006-12-13 12:55:47.0
3 Count1 1
3 Count2 0
3 LastModified$UserName markhall
to:
LastModified$Time Count1 Count2 LastModified$UserName
1 2011-05-10 12:57:03.0 0 58 mbeardsell
2 2010-03-31 21:45:53.0 0 0 MBeardsell
3 2006-12-13 12:55:47.0 1 0 markhall
P.S. I am not understanding the answers I am getting. I am going to rephrase my question to be more clear. I want to be able to do this:
If I have the values:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
I want to transpose them by sets of five as follows:
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
I have to do this for many many records, and I can't really stop and go through every five cells and type =Transpose(....)
