Hi I have a column that includes positive and some of the positive have matching negative numbers I like to search for the pairs of positive and negative and write the pairs first then the rest of the numbers. Here is an example
1
2
3
4
5
-1
-2

after sorting the column should look like this:
1
-1
2
-2
3
4
5

I appreciate your help.