A 2003 friendly version of a 2007 formula

dhally

Board Regular
Joined
May 9, 2011
Messages
58
Hello,
Is there a 2003 friendly version of this 2007 formula?:

=IFERROR(IF(VLOOKUP(A67,MroLookup,14,0)="","",VLOOKUP(A67,MroLookup,14,0)),"")
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Try

=IF(ISNA(VLOOKUP(....)),"",IF(VLOOKUP(....)="","",VLOOKUP(....)))
 
Last edited:
Upvote 0
Could be even better too...
What type of data is returned by the vlookup ? Text or Number ?
 
Upvote 0
dhally,

Maybe:
=IF(ISERROR(VLOOKUP(A67,MroLookup,14,0)),"",VLOOKUP(A67,MroLookup,14,0))
 
Upvote 0
Hello,
Is there a 2003 friendly version of this 2007 formula?:

=IFERROR(IF(VLOOKUP(A67,MroLookup,14,0)="","",VLOOKUP(A67,MroLookup,14,0)),"")

If the formula is expected normally to return text...

=LOOKUP(REPT("z",255),CHOOSE({1,2},"",T(VLOOKUP(A67,MroLookup,14,0))))
 
Upvote 0
If the formula is expected normally to return text...

=LOOKUP(REPT("z",255),CHOOSE({1,2},"",T(VLOOKUP(A67,MroLookup,14,0))))
Aladin Akyurek,
Actually the previous post about some cells still returning a "0" was my fault. I didn't enter the formula correctly given by jonmo1...my bad.

For the record, the formula is working perfectly in a 2003 enviornment now.
 
Upvote 0

Forum statistics

Threads
1,224,551
Messages
6,179,473
Members
452,915
Latest member
hannnahheileen

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top