Sort Absolute Values

T

Teddy-B

Is it possible? I want to sort a list in excell by absolute value so that the
number 3 will be above -3 (or its closest match) and the number 990 will be
above -990 (or its closest match).

Thanks
 
E

Eric

Don't think you can do it in one step. If you don't get a better answer,
insert a "helper" column to create the absolute value of your data. Then sort
by the helper and delete it.
 
J

Jim Cone

Use a helper column.
Assuming numbers (and only numbers) start in C6 and column D is blank then
enter this formula in D6 and fill down...
=IF(C6<0,ABS(C6)+0.0000000001,C6)
Sort both columns together using column D as the key (sort) column.
--
Jim Cone
Portland, Oregon USA



"Teddy-B" <[email protected]>
wrote in message
Is it possible? I want to sort a list in excell by absolute value so that the
number 3 will be above -3 (or its closest match) and the number 990 will be
above -990 (or its closest match).
Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top