View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Jim Cone[_2_] Jim Cone[_2_] is offline
external usenet poster
 
Posts: 1,549
Default Sort Absolute Values

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"
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