working in version 2021.4.2. I've seen similar discussions but haven't found one that quite answers my question.
I'm trying to add columns to my data by taking values in cells and transposing them over, but I keep hitting walls. Seems easy enough but I can't figure it out.
in the below example I want to convert the values in the "Group" column into their own columns.
I want to turn this:
| Employee Code | Group | Market |
| 1 | Accounting | N.America |
| 1 | Finance | N.America |
| 1 | HR | N.America |
| 1 | Legal | N.America |
| 2 | Accounting | Europe |
| 2 | HR | N.America |
| 3 | Accounting | Europe |
| 3 | Finance | Europe |
| 3 | Mfg | Asia |
| 3 | HR | Europe |
| 4 | Accounting | Asia |
| 5 | Accounting | N.America |
| 5 | Finance | Europe |
| 5 | HR | Asia |
| 5 | Legal | S.America |
| 5 | Mfg | S.America |
into this:
| Emp ID | Accounting | Finance | HR | Legal | Mfg |
| 1 | N.America | N.America | N.America | N.America | - |
| 2 | Europe | - | N.America | - | - |
| 3 | Europe | Europe | Europe | - | Asia |
| 4 | Asia | - | - | - | - |
| 5 | N.America | Europe | Asia | S.America | S.America |