I have a list of ID numbers in a table in a random order that I want sorted in ascending order. I also have a column in the table which has flagged certain people as working together and I would like the final sorted list to include the people working together directly following the person with the lowest I'd number from that group.
Ie.
2 a x
1 b
3 c 1
4 d
6 e x
5 f 1
Should sort to:
1 b
2 a x
6 e x
3 c 1
5 f 1
4 d
There is no way of knowing how many id's there will be or what the identifier used to group the different people will be.
VBA is not supported either.
Thanks for any you can provide.
Ie.
2 a x
1 b
3 c 1
4 d
6 e x
5 f 1
Should sort to:
1 b
2 a x
6 e x
3 c 1
5 f 1
4 d
There is no way of knowing how many id's there will be or what the identifier used to group the different people will be.
VBA is not supported either.
Thanks for any you can provide.