I have multiple rows of data that repeats in all columns except the last one. I want to convert the last columnn to individual rows. I figure I need to use the cross tab tool but I can't get it to work right
by way of illistration my data looks like this:
| Manager | State | Employee |
| AAAA | Ohio | XXXX |
| AAAA | Ohio | YYYY |
| AAAA | Ohio | ZZZZ |
| BBBB | Indiana | QQQQ |
| BBBB | Indiana | RRRR |
| BBBB | Indiana | SSSS |
| BBBB | Indiana | TTTT |
| CCCC | Illinois | UUUU |
| CCCC | Illinois | VVVV |
| CCCC | Illinois | WWWW |
and I want to make it look like this:
| Manager | State | Employee | Employee 2 | Employee 3 | Employee 4 | Employee 5 | Employee 6 |
| AAAA | Ohio | XXXX | YYYY | ZZZZ | | | |
| BBBB | Indiana | QQQQ | RRRR | SSSS | TTTT | | |
| CCCC | Illinois | UUUU | VVVV | WWWW | | | |
I don't mind blanks in some of the "Employee n" columns but I need the workflow to function so that it will to accomodate enough columns to capture however many of the highest number of Employess any one manager has.
Thanks!