Ignoring #NA's

andyb16

Board Regular
Joined
Apr 19, 2011
Messages
77
Hi All,

I have got a formula sheet with some known #NA errors. These errors are really there because the formula that has been build automatically populates everymonth and the #NA's would then take care of themselves.

However, I need to to sum all values in a row to find out grand totals.

When I try and do this the Grand Totals output is given as #NA due to some of the #NA's that exist. How can I get to have sum total without removing the #NA's?

Thanks
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Without knowing what the rest of your sheet/formulae look like, one way could be to change your formula so they can account for errors, e.g.:
Code:
=IF(ISERROR(A1/B1),0,A1/B1)
I believe Excel 2007 and 2010 infact has an IFERROR statement, e.g.:
Code:
=IFERROR(A1/B1,0,A1/B1)
 
Upvote 0
Thanks Danny/Jack!

Both are working....the first one would cost me an extra step.

Thanks u very much :)
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,274
Members
452,902
Latest member
Knuddeluff

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