SOLVED

How Do I Enter IFERROR For Following Cell?

Brass Contributor

I'm trying to make a cell return a 0 (zero) instead of the default #DIV/0! but one of my cells has a longer formula and the standard IFERROR I try to use isn't working.

 

#1:

For example, it works on the following cell...

=IFERROR(I5*$B$5/I4,0)

 

#2:

But it doesn't work on the following cell...

=I12/(J29+Q29+X29+AE29+AL29+AS29+AZ29)

 

How do I type it to get it to work on example #2 above?

 

I tried typing it as follows...

=IFERROR(I12/(J29+Q29+X29+AE29+AL29+AS29+AZ29,0)

 

...but this didn't work. I tried moving the ,0 around but nothing works.

4 Replies
best response confirmed by Nickerz_2020 (Brass Contributor)
Solution

@Nickerz_2020 

 

=IFERROR(I12/(J29+Q29+X29+AE29+AL29+AS29+AZ29),0)

@Nickerz_2020 

Hi there,

 

IfError function is working when there is result which you want to change.

 

Actually, it works well in my case.

 

Please note the attached file.

 

You will be sure of it.

 

Good like.

 

@Nickerz_2020 

 

=IFERROR(B2/(C4+D4+E4+F4+G4), 0)

 

Edgar_Martin_0-1602191963118.png

 

@Hans Vogelaar 

 

Yep, that worked! THANK YOU!!!!

 

So I just needed to close off the parenthesis! About this...get an a straight forward answer that works and asap!!!! Wish everything worked like this. =)

 

Thank you everyone for your help but I have to warn ya...now that I know there's some good talent in here...I'll be back asking more questions, needing more help - lol!

 

Thanks again!

1 best response

Accepted Solutions
best response confirmed by Nickerz_2020 (Brass Contributor)
Solution

@Nickerz_2020 

 

=IFERROR(I12/(J29+Q29+X29+AE29+AL29+AS29+AZ29),0)

View solution in original post