I have a list of data in below sample format:
| Customer No | Corp Type | YesNo |
| 12345 | c.a | Y |
| | c.b | Y |
| | c.c | Y |
| | c.d | Y |
| | c.e | Y |
What I want to show is like this:
| Customer No | c.a | c.b | c.c | c.d | c.e |
| 12345 | Y | Y | Y | Y | Y |
What I have now after using transpose tool is like below. Appreciate your help!
| Customer No | c.a | c.b | c.c | c.d | c.e |
| 12345 | Y | | | | |
| 12345 | | Y | | | |
| 12345 | | | Y | | |
| 12345 | | | | Y | |
| 12345 | | | | | Y |