iellingson
New Member
- Joined
- Dec 22, 2009
- Messages
- 14
Thanks in advance for all the help and suggestions that you provide.
I have a need to consolidate the data from rows to columns yet only provide one "master" or "unique" identifier. Example below.
I have a need to consolidate the data from rows to columns yet only provide one "master" or "unique" identifier. Example below.
Code:
This is how the data is currently presented.
A B C
1 Identifier Service Charge
2 5555 1 25
3 5555 2 4.5
4 5555 3 3.5
5 5555 4 1
6 6666 1 35
7 6666 2 5.5
8 6666 3 4.5
This is the format I need it in.
A B C D E F G H I
1 Identifier Service Charge Service Charge Service Charge Service Charge
2 5555 1 25 2 4.5 3 3.5 4 1
3 6666 1 35 2 5.5 3 4.5