VLOOKUP in Excel 2010, need it to work in Excel XP

CraigG

Board Regular
Joined
May 1, 2005
Messages
173
Office Version
  1. 365
  2. 2007
Platform
  1. Windows
  2. Mobile
Hi

I've created a spreadsheet in Excel 2010. I've used many VLOOKUPs - great, apart from these now have the FALSE / TRUE option at the end. All work fine - however, I have one user who needs to use Excel XP - they receive #NAME error for the cells with the VLOOKUP, obviously because the new VLOOKUP formula only works in Excel 2010.

Anyone any ideas how I can get this formula to work in lower versions?

Thanks in advance!

Craig
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
VLOOKUP is exactly the same in XP and 2010 so they should not get an error.

Can you post the exact formula that is failing.
 
Upvote 0
Hi

Formula...

IFERROR(VLOOKUP(CELL,'WORSHEET'!CELL:CELL,COLUMN,FALSE),"")

Actual forumla
IFERROR(VLOOKUP($B4,'July 2011'!$B$5:$AJ$41,34,FALSE),"")
 
Upvote 0
It's not the Vlookup I'm sure, Vlookup is available in Excel XP.

It is likely that you have the vlookup nested in the Iferror function, in order to hide the #N/A errors when no match is found...

Something like

=IFERROR(VLOOKUP(....),"")
This makes it return "" when the vlookup results in an error.


It's the IFERROR that is not available in Excel XP..

Instead, try

=IF(ISNA(VLOOKUP(...)),"",VLOOKUP(...))
 
Upvote 0
Brillant

Thanks both for replying.

I forgot all about IFERROR. Soon forget about the old ways of doing things!

Thanks again.

Craig
 
Upvote 0

Forum statistics

Threads
1,224,509
Messages
6,179,194
Members
452,893
Latest member
denay

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