Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hey guys,
I have a table with number, designation and company, like:
Number | Designation | Comp |
11 | Retreats | IJ |
11 | Retreats | UI |
1101 | Event 1 | IJ |
1101 | Event 1 | UI |
I would like to have it ike this:
Number | Designation | Comp A | Comp B |
11 | Retreats | IJ | |
11 | Retreats | UI | |
1101 | Event 1 | IJ | |
1101 | Event 1 | UI |
I've tried grouping, unpivot or pivot and so far nothing.
Any ideas?
Thank you very much
Pedro
Solved! Go to Solution.
Hi @Anonymous
Add a conditional column
Pivot column
Best Regrads
Maggie
Hi @Anonymous
Add a conditional column
Pivot column
Best Regrads
Maggie
Guys,
Correction. The final output would b like this:
Number | Designation | Comp A | Comp B |
11 | Retreats | IJ | UI |
1101 | Event 1 | IJ | UI |
1102 | Event 2 | IJ | UI |
Thanks