I have a table like
| a | 2 |
| b | 3 |
| c | 4 |
| d | 5 |
| a | 4 |
| a | 5 |
| b | 5 |
i would like to change the rows to columns like
| a | 2 | 4 | 5 |
| b | 3 | 5 | |
| c | 4 | ||
| d | 5 |
can you please help me do this.
| a | 2 |
| b | 3 |
| c | 4 |
| d | 5 |
| a | 4 |
| a | 5 |
| b | 5 |
| a | 2 | 4 | 5 |
| b | 3 | 5 | |
| c | 4 | ||
| d | 5 |
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Prasant JinagaPosted Dec 22, 2011, 1:57 AM
You can use Pivot tables to solve.
Thanks,
Prasant