Please note that this is an array formula. Within the cell in edit mode (F2)
paste this formula and press Ctrl+Shift+Enter to apply this formula. If
successful in 'Formula Bar' you can notice the curly braces at both ends like
"{=<formula>}"
This is an array formula which must be entered with CTRL+Shift+Enter and NOT
'just enter. If you do it correctly then Excel will put curly brackets around
'the formula{}. You can't type these yourself. If you Edit the ranges
'then you must re-enter as An array
In excel 2007 use an "IfError" formula in the cells to sum like this:
=IfError(A1/B1,0)
Which will return a the result of A1/B1 or 0 if the formula return an error.
In previous versions use this:
=IF(ISERROR(A1/B1),0,A1/B1)
Hopes this helps.
....
Per
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.