Hi, I have a dataset that looks like this:
| ID | Name | State |
| 1 | John | Approved |
| 1 | Steve | Approved |
I need to get it to something like this:
| ID | Name1 | State1 | Name2 | State2 |
| 1 | John | Approved | Steve | Approved |
I was attempting this using Crosstab but I couldn't make it work, is it a different tool I need or am I using it wrongly? Thanks in advance.