Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default 2007 to 2003 functionality

I have excel 2007 and transferred a file to a user that only has 2003. When
trying save this in the 2003 format the compatibity checker gives me 42
formulas that have significant loss of functionality. All of the formulas
have the IFERROR function in them. Is there a fix for this problem? It
casuse all 42 of thes formulas to put the #name error in the field. One of
the formulas looks like this.
Did the IFERROR function even exist in 2003 version?


=IFERROR(HLOOKUP(F7,$D$36:$N$40,5,FALSE),"")
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7,247
Default 2007 to 2003 functionality

The IFERROR function is new to 2007, and is not available in earlier
versions, regardless of how the file is saved. Users with 2003 or
earlier will get a #NAME? error anywhere the IFERROR function is used.
You can write your formulas like

=IF(ISERROR(your formula),result if error,your formula)

In your example, this would be

=IF(ISERROR(HLOOKUP(F7,$D$26:$N$40,5,FALSE)),"",HL OOKUP(F7,$D$26:$N$40,5,FALSE))

This accomplishes the same thing as IFERROR, except that in most cases
the formula will be calculated twice, once within ISERROR and then
again in the FALSE part of the IF function, assuming the formula is
not an error. With large workbooks and/or complicated lookups, you
might take a performance hit.


Cordially,
Chip Pearson
Microsoft MVP 1998 - 2010
Pearson Software Consulting, LLC
www.cpearson.com
[email on web site]





On Wed, 27 Jan 2010 14:13:01 -0800, Russell P
wrote:

I have excel 2007 and transferred a file to a user that only has 2003. When
trying save this in the 2003 format the compatibity checker gives me 42
formulas that have significant loss of functionality. All of the formulas
have the IFERROR function in them. Is there a fix for this problem? It
casuse all 42 of thes formulas to put the #name error in the field. One of
the formulas looks like this.
Did the IFERROR function even exist in 2003 version?


=IFERROR(HLOOKUP(F7,$D$36:$N$40,5,FALSE),"")

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default 2007 to 2003 functionality

To replicate Iferror in 2003, use:
=IF(ISERROR(HLOOKUP(F7,$D$36:$N$40,5,FALSE)),"",HL OOKUP(F7,$D$36:$N$40,5,FALSE))

Regards
Fred

"Russell P" wrote in message
...
I have excel 2007 and transferred a file to a user that only has 2003.
When
trying save this in the 2003 format the compatibity checker gives me 42
formulas that have significant loss of functionality. All of the formulas
have the IFERROR function in them. Is there a fix for this problem? It
casuse all 42 of thes formulas to put the #name error in the field. One
of
the formulas looks like this.
Did the IFERROR function even exist in 2003 version?


=IFERROR(HLOOKUP(F7,$D$36:$N$40,5,FALSE),"")


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default 2007 to 2003 functionality

Chip and Fred gave you the solution, but you may want to consider using xl2003
if you have to support xl2007 and xl2003.

I bet you'll have fewer problems with xl2007 users opening an xl2003 workbook.

(It's never a bad idea to develop the workbook in the earliest version of excel
that you have to support.)

Russell P wrote:

I have excel 2007 and transferred a file to a user that only has 2003. When
trying save this in the 2003 format the compatibity checker gives me 42
formulas that have significant loss of functionality. All of the formulas
have the IFERROR function in them. Is there a fix for this problem? It
casuse all 42 of thes formulas to put the #name error in the field. One of
the formulas looks like this.
Did the IFERROR function even exist in 2003 version?

=IFERROR(HLOOKUP(F7,$D$36:$N$40,5,FALSE),"")


--

Dave Peterson
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
New Drop-Down Functionality in 2007? GregO Excel Worksheet Functions 2 January 7th 10 05:47 PM
Protecting sheet but keeping list functionality in 2003 Doug Glancy Excel Worksheet Functions 2 September 30th 09 05:09 PM
Transition Link functionality from Excel 2003 to Excel 2007 webster Excel Discussion (Misc queries) 0 May 8th 08 04:20 PM
Problem with Excel 2003 restricting functionality matthewDBS Excel Discussion (Misc queries) 1 August 12th 05 07:44 PM
Excel 2003 Viewer: No more "Browse in same window" IE functionality? [email protected] Excel Discussion (Misc queries) 0 December 28th 04 07:28 PM


All times are GMT +1. The time now is 09:00 AM.

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"