#DIV/0 Issue

gmazza76

Well-known Member
Joined
Mar 19, 2011
Messages
771
Office Version
  1. 365
Platform
  1. Windows
Good Morning,

Is there anyway i can write ISSNA into the following sum as i havent come across it before i just now ISSNA can be used to stop the error #DIV/0 showing up.

=IF(C37="","",D17/C37)

The sum works on some lines but not on others.

Many Thanks
Gavin
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Code:
=if(isna(c37="","",d17/c37),"",(c37="","",d17/c37))
 
Upvote 0
Excel pre-2007:
=IF(ISERR(D17/C37),"",IF(C37="","",D17/C3))

later versions:
=iferror(IF(C37="","",D17/C37),"")

ISNA won't detect #DIV/0!
 
Last edited:
Upvote 0
P45cal
Yep, you're right....and a bottle of Chardy won't iprove your Excel skills....:oops:

or your spelling
 
Upvote 0
No....I did !!

maybe should have read.....MY spelling !!
 
Upvote 0
Conditional Formatting, if you have many formulas leading to other cells also with formulas depending on other cells you will find that you will be better to use conditional formatting with this;

=ISERROR(CELL)
 
Upvote 0

Forum statistics

Threads
1,224,514
Messages
6,179,223
Members
452,896
Latest member
IGT

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