I hope the title of this topic makes sense.
I have a table with four columns. I want the content of column 3 to become new columns, and at the same time the content of column 4 becoming the value of the new columns.
It should look like this
Before:
ID
Group
Question
Value
789
Red
A
1
790
Red
B
2
791
Red
C
3
After:
ID
Group
A
B
C
789
Red
1
790
Red
2
791
Red
3
I tried Pivoting, Unpivoting, Transpose… but nothing worked. Maybe I’m making a mistake or tried just the wrong nodes.