IFERROR Question

J

JimS

I have this formula in Excel 2007

=IFERROR(G14/H14/24,0)

I'm sending this sheet to a friend who has 2000. What formula can I
use to achieve the same result? Otherwise it returns the #DIV/0!
error.

Thanks
 
J

JE McGimpsey

If you're just checking that H14<>0, the best way (that doesn't mask
other errors):

=IF(H14=0, 0, G14/H14/24)

Of course, given the desired results in your IFERROR() formula, the
above would be better in XL07, too.
 

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

Top