View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Drew[_2_] Drew[_2_] is offline
external usenet poster
 
Posts: 22
Default IFERROR in 2003 version

Thanks Roger ... a couple of examples are below.

=IF(I5="","",IFERROR(C11-SUM(F3*I5),""))

=IF(I5="","",IFERROR(SUM(F11,I11,L11),""))

=IF(H12="","",IFERROR(G12*$I$5,"Section 1 First"))

Also ... is EDATE supported in 2003?

"Roger Govier" <roger@technology4unospamdotcodotuk wrote in message
...
Hi Drew

Unfortunately, no.
You will need to use something to trap for the error so that it will work
in both versions.

Obviously it could be
=IF(ISERROR(your_formula),"",your_formula)

but dependent upon what your_formula is, it may be possible to use an
easier (faster) test to see whether Null or your_formula should be
returned.

If you want to post back with your actual formula, maybe we can suggest a
different test.
--
Regards
Roger Govier

"Drew" wrote in message
...
All ...

Is there an equivalent to IFERROR (Excel 2007) that I can use so as to
save functionality when being viewed in Excel 2003?

Thank you.