View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
RichardSchollar RichardSchollar is offline
external usenet poster
 
Posts: 196
Default Sum some cells in column but not #n/a errors

You can use an array formula:

=SUM(IF(ISNUMBER(YourRange),YourRange))

Confirmed with Ctrl+Shift+Enter (Excel will surround the formula with
curly braces {} if entered correctly). This will exclude non-numeric
values from your sum range.

Hope this helps!

Richard


Unicorn wrote:

This has been baffling me for hours.

How can I get Excel to sum a selection of cells, but ignore #N/A errors?

I have a column of data, returning profit values for a particular product
and percentages of that profit to a supplier each month

I want to sum the profit and the percentages separately, but as the data is
also used for charts, I don't want it to go to zero if I don't have the
information. I either have# n/a errors occurring if not all the data is in,
or I have charts that drop to zero and I don't really want either.

Eg:


Oct-06

Client A profit £1545.55
Share to partner 1 £154.56
Share to partner 2 £193.19
Profit £1197.80

Is this possible?

Thanks