Hi all,
I have the following table which I would like to use the data contained in the Name column and use it as a new column with the correspondent values. I tried to used transpose without success so any help would be appreciated.
| Name | Values |
| abc | AB1 |
| cba | AB3 |
| abc | SG1 |
| cba | AD12 |
| abc | AD3 |
| cba | AB1 |
| abc | AD3 |
Final output should look like:
| abc | cba |
| AB1 | AB3 |
| SG1 | AD12 |
| AD3 | AB1 |
| AD3 | |