View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Summing a Column - Net and Absolute Values

For the absolute sum try

=SUM(IF(ISNUMBER(ABS(A1:A20)),ABS(A1:A20),FALSE))

Which is an aeeay so commit with
Ctrl+Shift+Enter
The inner ISNUMBER isn't strictly necessary but takes care of any odd error
values.

Mike

"BRob" wrote:

I've got a column of positive and negative numbers that I want to total in
two ways :

- net - ie just natural addition which I can do with the SUM formulae
- absolute - ie the total being based on an assumption that all numbers are
positive

A slightly messy way (because of the design of the spreadsheet) is to create
an extra column of absolute values and sum that.

So my question is 'Is there are formulae I can use to do an absolute sum on
those values directly?'

TIA

Rob