Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default IFERROR in 2003 version

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.


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,480
Default IFERROR in 2003 version

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.

  #3   Report Post  
Posted to microsoft.public.excel.misc
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.



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,480
Default IFERROR in 2003 version

Hi Drew

If they are numerical values in the cells, then you don't really need the
error traps.
If any values are 0, then you may end up with a zero result, but none of the
formulae shown are divisions, hence there will not be a #DIV/0 error

You could use
=IF(I5="","",IF(COUNT(C11,F3,I5)<3,"",C11-(F3*I5)))

Since none of the formulae are really complex, then you could simply use
=IF(I5="","",IF(ISERROR(C11-(F3*I5)),"",C11-(F3*I5)))

EDATE is available in XL2003, provided you have the Analysis Toolpak
installed, ToolsAddinsAnalysis Toolpak.

--
Regards
Roger Govier

"Drew" wrote in message
...
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.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default IFERROR in 2003 version

Roger ... thank you kindly. The second option worked fine in all cases with
some ammendment specific to the cells formula requirement.

Cheers.

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

If they are numerical values in the cells, then you don't really need the
error traps.
If any values are 0, then you may end up with a zero result, but none of
the formulae shown are divisions, hence there will not be a #DIV/0 error

You could use
=IF(I5="","",IF(COUNT(C11,F3,I5)<3,"",C11-(F3*I5)))

Since none of the formulae are really complex, then you could simply use
=IF(I5="","",IF(ISERROR(C11-(F3*I5)),"",C11-(F3*I5)))

EDATE is available in XL2003, provided you have the Analysis Toolpak
installed, ToolsAddinsAnalysis Toolpak.

--
Regards
Roger Govier

"Drew" wrote in message
...
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.







  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default IFERROR in 2003 version

вторник, 8 апреля 2008*г., 13:32:30 UTC+5 пользователь Roger Govier написал:
Hi Drew

If they are numerical values in the cells, then you don't really need the
error traps.
If any values are 0, then you may end up with a zero result, but none of the
formulae shown are divisions, hence there will not be a #DIV/0 error

You could use
=IF(I5="","",IF(COUNT(C11,F3,I5)<3,"",C11-(F3*I5)))

Since none of the formulae are really complex, then you could simply use
=IF(I5="","",IF(ISERROR(C11-(F3*I5)),"",C11-(F3*I5)))

EDATE is available in XL2003, provided you have the Analysis Toolpak
installed, ToolsAddinsAnalysis Toolpak.

--
Regards
Roger Govier

"Drew" wrote in message
...
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.


I have smilar problem my excel 2003 cannot read Iferror function. Ive tried to use "IF(ISerror(" instead of Iferror but it coming out as False or empty cells.

Can anyone help me! I need to convert this function to make it readoble in excel 2003.
"=_xlfn.IFERROR(INDEX('List of ICT Contracts'!$A$3:$A$56,SMALL(IF($B$2='List of ICT Contracts'!$G$3:$G$56,ROW('List of ICT Contracts'!$A$3:$A$56)-2,""),ROW()-4)),"")"
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Time for IFERROR? PAL Excel Worksheet Functions 7 February 13th 08 09:52 AM
download trial version excel 2003? can only find trial version 200 susan Excel Discussion (Misc queries) 2 November 7th 07 03:19 AM
links between 2007 version files and 97-2003 version files biff Links and Linking in Excel 1 October 20th 07 12:18 AM
version 2002 Vs 2003 kikitinoq Excel Discussion (Misc queries) 0 July 31st 06 09:44 PM
Microsoft XP and 2003 version [email protected] Excel Discussion (Misc queries) 2 December 7th 04 11:32 AM


All times are GMT +1. The time now is 06:45 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright 2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"