• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

IFERROR problem

Hi all,

I'm tring to add an iferror to the formula below

=O120-N117-(($N$2/$N121)*S114)

I wan't to avoid getting #DIV/0! in the result

I would rather return a zero if there's an error, instead #DIV/0!

Regards,

Brian
 
Hi Derek,

Would you be able to add the same iferror to the formula below please.

I've tried doing it based on the earlier one you sent, but can't seem to get it to work

=SUM(($N115+$N116)/$N120)*$J114

Regards

Brian
 
Hi all,

I'm tring to add an iferror to the formula below

=O120-N117-(($N$2/$N121)*S114)

I wan't to avoid getting #DIV/0! in the result

I would rather return a zero if there's an error, instead #DIV/0!

Regards,

Brian
Dear Brian
I think your formula not get corrected result. Can you attach your file. What data show in
O120, N117, N2:N121 & S114
If In O120 is 1000
In N117 is 100
In N2 is 10 & N121 is 2 (10/2=5)
In S114 is 2
=1000-100=900
=900-5 = 895
=895*2= 1790
Asper your formula get result is : 890
kindly confirm.
 
You may also be able to use:

IFERROR(Value if no error, value if error)

for example:

IFERROR(SUM(($N115+$N116)/$N120)*$J114,0)
 
Back
Top