We are collecting quantity and item descriptions via webform for internal supply requests.
Each row is a request.
The first several columns in the row are the requester's information (Name, Dept., etc.).
All other columns in the row are corresponding quantity and item description "pairs", such as, "Stapler Qty", "Stapler Description", where the description is a drop-down box of available items in that category.
I would like an automated way to transpose these columns into rows on a new sheet so they might read like this:
John Doe
Accounting
2 Stapler
3 Pencil
5 Keyboard
Sally Travers
Human Resources
3 Legal Pad
10 Blue Ink Pen
Instead of like this:
John Doe Accounting 2 Stapler 3 Pencil 5 Keyboard
Sally Travers Human Resources 3 Legal Pads 10 Blue Ink Pens
Any slick ideas?
Thanks!