I have input file as shown below. I am trying to go through the records and create an output file as shown below. I believe cross tab may do that. But unable to execute . Could you please share your subject matter expert thought.
| Input File |
| Account ID | Team |
| 1 | KP |
| 1 | KD |
| 1 | LP |
| 2 | BD |
| 3 | CD |
| 3 | PD |
| 3 | KP |
| | |
| Output File |
| Account ID | Team |
| 1 | KP,KD,LP |
| 2 | BD |
| 3 | CD,PD,KP |