HIDING DIV/0!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I hide a DIV/1 error? The formula is
=+IF(G37<=79%,"ORDER", "") but when nothing is entered into the columns i
get the DIV/0! error.

Any help would be appreciated
 
The error is returned becasue the value of g37 is div/0 so the logic
does not evaluate and repeats the error

=+IF(ISERROR(G37),"", IF(G37<=75%,"ORDER",""))

Would work but a better option would be to tackle the error at source
and remove the error from g37 using an if statement that if the
denominator (the thing you are dividing by) is 0 to change to another
value otherwise do the calculation

Regards

Dav
 

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

iserror problem 9
how to hide #DIV/0! 6
HIDE #div/0 1
Help with VBScript/Access database 0
Formula text in woorksheet cell 2
hide #div/0 2
Div/0 error on running mean % 2
Div 0 help 1

Back
Top