Hi all, so I'm trying to figure out how to merge rows after I've pivoted and grouped by... the example below is probably clearer than trying to explain...
Original:
Current Result After Pivot and Group By:
Desired Outcome:
I can't seem to figure this out and google hasn't been much help so I'm hoping someone on here has worked this out before?
Thanks!
Original:
File # | File Responsibility | Assigned To |
0001 | Expert | Jim |
0001 | Admin | Diane |
0001 | Reviewer | Frank |
0001 | Research | Sharon |
Current Result After Pivot and Group By:
File # | Expert | Admin | Reviewer | Research |
0001 | Jim | null | null | null |
0001 | null | Diane | null | null |
0001 | null | null | Frank | null |
0001 | null | null | null | Sharon |
Desired Outcome:
File # | Expert | Admin | Reviewer | Research |
0001 | Jim | Diane | Frank | Sharon |
I can't seem to figure this out and google hasn't been much help so I'm hoping someone on here has worked this out before?
Thanks!