#DIV/0! error

jgold20

Board Regular
Joined
Feb 4, 2018
Messages
135
I understand why I am receiving the error, is there a way to do error handling for the below code when "A3" is blank and "I3" = "YES"


=IF(OR(C3="",C3="WG"),IF(AND(I3="YES"),"",""),
IF(OR(C3="GE"),IF(AND(I3="YES"),(F3/A3),""),
IF(OR(C3="H",C3="SR"),IF(AND(I3="YES"),(F3/1.05/A3),""),
IF(OR(C3="B",C3="D",C3="L",C3="M",C3="N",C3="Q",C3="R",C3="V",C3="VP",C3="W",C3="Y"),IF(AND(I3="YES"),(F3/1.1/A3),""),
IF(OR(C3="DT",C3="X"),IF(AND(I3="YES"),(F3/1.12/A3),""),
IF(OR(C3="MD",C3="MN",C3="NO"),IF(AND(I3="YES"),(F3/1.13/A3),"")))))))
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
.. Is there a way to do error handling for the below code when "A3" is blank and "I3" = "YES"
Yes there is. What do you want returned when that happens?


BTW, you have quite a lot of extra "baggage" in that formula. for example
AND(I3="YES") Used many times, is more simply written as I3="YES"
OR(C3="GE") is more simply written as C3="GE"
 
Upvote 0
Is this what you want?
- inserts "" where both conditions met otherwise evaluates original formula

=IF(AND(ISBLANK(A3),I3="YES"),"",your formula)
 
Last edited:
Upvote 0
The method works
- try this formula and vary the value in A3 and I3
- 0/0 is only evaluated if AND results in FALSE

=IF(AND(ISBLANK(A3),I3="YES"),"",0/0)

Did you remove the leading = from beginning of your formula?

ie
=IF(AND(ISBLANK(A3),I3="YES"),"",IF(OR.....
not
=IF(AND(ISBLANK(A3),I3="YES"),"",=IF(OR.....
 
Last edited:
Upvote 0
Another way to suppress errors...

=IFERROR(your formula without a leading =,"")
 
Last edited:
Upvote 0
I had a comma missing, however, I had to make J3=NO (I had to create new cells, this moved over) to get the desired results (suppressing the #DIV error). This now has created a #DIV error when J3=YES (I had to create new cells, this moved over) before I enter a value. I do not think there is a way around this:

=IF(OR(C3="",C3="WG"),IF(AND(ISBLANK(F3),J3="NO"),"",""),
IF(OR(C3="GE"),IF(AND(ISBLANK(F3),J3="NO"),"",G3/F3),
IF(OR(C3="H",C3="SR"),IF(AND(ISBLANK(F3),J3="YES"),"",G3/1.05/F3),
IF(OR(C3="B",C3="D",C3="L",C3="M",C3="N",C3="Q",C3="R",C3="V",C3="VP",C3="W",C3="Y"),IF(AND(ISBLANK(F3),J3="NO"),"",G3/1.1/F3),
IF(OR(C3="DT",C3="X"),IF(AND(ISBLANK(F3),J3="NO"),"",G3/1.12/F3),
IF(OR(C3="MD",C3="MN",C3="NO"),IF(AND(ISBLANK(F3),J3="NO"),"",G3/1.13/F3)))))))

F3 G3 H3 I3 J3
#DIV /0!YESYES
#DIV /0!Min. Cf is = to or > 200 Cf
#DIV /0!
#DIV /0!

<tbody>
</tbody>
 
Last edited:
Upvote 0
Edit: I hadn't seen the last post so was answering in relation to the original formula/layout

Try this cleaned-up version

=IF(OR(I3<>"YES",A3="",C3="",C3="WG"),"",
IF(C3="GE",F3/A3,IF(OR(C3="H",C3="SR"),F3/1.05/A3,
IF(OR(C3="B",C3="D",C3="L",C3="M",C3="N",C3="Q",C3="R",C3="V",C3="VP",C3="W",C3="Y"),F3/1.1/A3,
IF(OR(C3="DT",C3="X"),F3/1.12/A3,
IF(OR(C3="MD",C3="MN",C3="NO"),F3/1.13/A3))))))
 
Last edited:
Upvote 0
No idea how to use IFERROR in my formula with the combination of IF/OR/AND statements. This would seem like the easiest way to do it.
 
Upvote 0

Forum statistics

Threads
1,215,564
Messages
6,125,575
Members
449,237
Latest member
Chase S

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