I have data output where there is an index column and a sample of values for each index. Basically I want to convert:
[tt]
Index | Value
-------------
1 | 2
1 | 5
1 | 3
1 | 1
2 | 1
2 | 1
3 | 5
To a table:
Index 1 | 2 | 3 |
------------------------
2 | 1 | 5 |
5 | 1 | |
3 | | |
1 | | |
[/tt]
Such that I can run some statistics on each index value. Is this possible? I've done it before with VBA, but I was curious if anyone knew any slick alternative.
Thanks,
Eric
[tt]
Index | Value
-------------
1 | 2
1 | 5
1 | 3
1 | 1
2 | 1
2 | 1
3 | 5
To a table:
Index 1 | 2 | 3 |
------------------------
2 | 1 | 5 |
5 | 1 | |
3 | | |
1 | | |
[/tt]
Such that I can run some statistics on each index value. Is this possible? I've done it before with VBA, but I was curious if anyone knew any slick alternative.
Thanks,
Eric