Summing a range with errors in it

Helen

Board Regular
Joined
Feb 19, 2002
Messages
103
If I have a range that has for example #VALUE! and numbers in a range is there any way of summing the range and for it not to error, but give the sum of the numbers?
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Someone helped me with a similar problem I was having with #N/A.
You might try this:
=SUMIF(A1:A100,"<>#VALUE")

If it worked for #N/A, I would think it would work for #VALUE

Hope it helps
 
Upvote 0
On 2002-03-02 09:29, Helen wrote:
If I have a range that has for example #VALUE! and numbers in a range is there any way of summing the range and for it not to error, but give the sum of the numbers?

If it's not beyond your control to have errors like #VALUE!, #DIV/0!, or #REF!, I'd suggest to hunt them down and eliminate their causes (excepting perhaps #N/A in the process, otherwise use for a range with different types of error the following array-formula:

=SUM(IF(NOT(ISERROR(A1:A6)),A1:A6))

To array-enter a formula, you need to hit control+shift+enter at the same time, not just enter.

Aladin
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,732
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top