IFERROR help

P

Pete DeKalb

can i use IFERROR in the following existing formula to remove the "#DIV/0!"
result and replace it with "0": =IF(Input!$AB116=1,M29/M17,M29/(M17+M18))
 
M

mike

You could probably do something like:

=IFERROR(IF(Input!$AB116=1,M29/M17,M29/(M17+M18)),0)

But to be honest I've never used IFERROR() before. I used to use
=IF(ISERROR()), but I think I'll start using IFERROR().
 

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


Top