#DIV/0! error

  • Thread starter Thread starter Memo Larach
  • Start date Start date
M

Memo Larach

I'm using the following formula =100%-(H6/J4) to get a percentage,
however result is #DIV/0! error

Can anybody help with this error?


Thanks for your help
 
If J4 is zero or blank, you'll get this error. Check to make sure there is a
value in that cell.
 
Sorry, I forgot to add that if you still get the error even if there is
something in J4, hit the "F9" button to recalculate the spreadsheet. It could
be that your workbook isn't set up to automatically calculate when changes
are made. You can change this by going to Options, Calculation tab.
 
=IF(J4=0,"",100%-(H6/J4))


Gord Dibben MS Excel MVP

On Sun, 6 Dec 2009 06:57:01 -0800, Memo Larach <Memo
 
Assuming you always format the result cell as percentage - you may try this:
=IF(ISERR(1-H6/J4),"",1-(H6/J4))
In order to avoid the error.
Micky
 

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.

Ask a Question

Similar Threads

Circular Reference will not solve #VALUE! or #DIV/0! 7
divide by zero 1
problem with formulas (2) 7
"#DIV/0!" 4
Div / 0 5
iserror problem 9
Conditional Formatting for #DIV/0! 6
Div 0 help 1

Back
Top