Hi community,
I can't quite figure out what should be a relatively simple transformation. My data is structured like this.
| Group | Person |
| 1 | A |
| 2 | B |
| 3 | C |
| 4 | D |
| 1 | E |
| 4 | F |
| 3 | G |
I want the output to be
I thought about cross-tabbing using a concatenate function and then doing "text to rows". But in practice there are a lot of groups, not just 4, so I was hoping there was a more practical solution.
Thanks!