mcfurlong1
New Member
- Joined
- Mar 19, 2020
- Messages
- 3
I currently have a list of clients where in some cases, the clients have multiple client numbers which are in different columns. I need to move those with multiple client numbers to have the client number on it's own row. My dataset currently looks like this:
And I want it to look like this:
CLIENT | CODE 1 | CODE 2 | CODE 3 | CODE 4 |
Alina Smith | 1 | 5 | 9 | 12 |
Ashley Ray | 3 | 6 | ||
Ben Goldsmith | 2 | |||
Bill Luther | 8 | |||
Brett Beavers | 7 | 4 |
And I want it to look like this:
CLIENT | CODE |
Alina Smith | 1 |
Alina Smith | 5 |
Alina Smith | 9 |
Ashley Ray | 3 |
Ashley Ray | 6 |
Ben Goldsmith | 2 |
Bill Luther | 8 |
Brett Beavers | 7 |
Brett Beavers | 4 |