up vote 1 down vote favorite
share [g+] share [fb]

I have a spreadsheet that has information in groups. The header row contain company names and information and then the grouped rows beneath them contain names of people in the company.

Company Name | Number of Employees | Revenue |
Employee Name | Email | Phone

Is there anyway to sort by the number of employees and/or revenue and keep the grouped employee information below the company with the information?

Normally when I try it, it will sort the company information but keep the employee information in the order that it is entered.

link|improve this question
You may just want to import this data into a database where you can generate this kind of report easily. – Robert Groves Jun 5 '09 at 1:24
feedback

1 Answer

up vote 2 down vote accepted

If I understand your question correctly, I have a way you can accomplish what you want (don't know if there is a more efficient method).

Write code which will, for each company header row, copy the number of employess and revenue data into two of the chosen unused columns. The data needs to be copied into the columns for both the header company row and detail employee rows.

In the third column assign a sequence number. This is to keep data together and in order when sorting by employee/revenue.

Now you can sort by either the newly created number of employees and/or revenue columns (along with the sequence column to maintain ordering within company).

After the sort you can delete the extra copied data rows.

So if your data looked like this to start with...

A              B                  C
Penetrode      200                750000
Micheal Bolton mbolton@pene.com   555-555-3333
Samir N        samirn@pene.com
Initech        500                500000
Bill Lumbergh  umumyeah@init.com  555-555-1212    
Peter Gibbons  pgibbons@init.com  555-555-2222

Your code would then copy the employee count and revenue data and sequencify the rows using three unused columns.

A              B                  C             D                  E       F
Penetrode      200                750000        200                750000  1
Micheal Bolton mbolton@pene.com   555-555-3333  200                750000  2
Samir N        samirn@pene.com    555-555-3334  200                750000  3
Initech        500                500000        500                500000  4
Bill Lumbergh  umumyeah@init.com  555-555-1212  500                500000  5
Peter Gibbons  pgibbons@init.com  555-555-2222  500                500000  6

Then you can code a sort on any of the column combos: (D,F), (E,F), (D,E,F), or (E,D,F)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.