Hi,
I've a dataset that looks like this(demo only, I've more columns in it)
| Title | Mr | Mrs |
| Name | John | Alice |
| Surname | Adams | Adams |
| Address | 3z | 4z |
| Phone | 123 | 456 |
What I want to do is to pivot the data in a way that my new headers are the values from first column and the rest follows the suit. Exactly how it looks below.
| Title | Name | Surname | Address | Phone |
| Mr | John | Adams | 3z | 123 |
| Mrs | Alice | Adams | 4z | 456 |
I tried using Cross Tab to do this but it works partially as it only allows me to select one column for values hence I lose all the info in the third column.
Is there a way to do this, bearing in mind that the dataset is much larger and there are more columns.
Thanks