I have a table with the following data:
Cell1 Cell2
Computers 10
Dell 5
IBM 3
Compaq 2
HDDs 12
Seagate 7
Samsung 3
Test 2
Monitors 18
Seagate 7
Samsung 9
Dell 1
Now If I sort by Cell 2, it destroys the format and puts 18,12,10 etc. Is there a way to preserve the rows within a 'parent' from sorting? For example, if I were to sort by Cell2
Cell1 Cell2
Monitors 18
Seagate 7
Samsung 9
Dell 1
HDDs 12
Seagate 7
Samsung 3
Test 2
Computers 10
Dell 5
IBM 3
Compaq 2
So the child rows are not sorted at all, but the parents are sorted preserving the order of the children.