VLOOKUP missing some part numbers

sburkhar

Active Member
Joined
Oct 4, 2006
Messages
363
Why would my VLOOKUP only be returning values that begin with a number? Some of our part numbers begin with a letter and it's not returning any of those.

Terminal;General;Box;SN 976750
Terminal;Eyelet 7009513902
PB547-02880
PBF111-1.6MG8

here is my VLOOKUP formula:
=IF(ISERROR(VLOOKUP(F29,'C:\Documents and Settings\sburkhar\Desktop\[VLOOKUP.xls]PRICE'!$B$1:$C$65536,2,FALSE)),"",VLOOKUP(F29,'C:\Documents and Settings\sburkhar\Desktop\[VLOOKUP.xls]PRICE'!$B$1:$C$65536,2,FALSE))
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Have you checked for leading/trailing spaces?

How are you entering data into F29?
 
Upvote 0
I removed leading and trailing spaces via ASAP utilities.

Data is usually entered by copy and paste. in this case I copied and pasted directly from the VLOOKUP to make sure it was working and it's only capturing numbers and nothing that begins with a letter.

I think I may have stated my issue backwards, I am entering the Part Number expecting to get a description of the part returned. the VLOOKUP is only returning descriptions for Part Numbers that begin with a number.
 
Last edited:
Upvote 0
Try breaking down the formula, remove the error capture and just try a simple vlookup;

Code:
=VLOOKUP(F29,'C:\Documents and Settings\sburkhar\Desktop\[VLOOKUP.xls]PRICE'!$B$1:$C$65536,2,FALSE)

Does this return the correct result?
 
Upvote 0
I did that and I think we found the problem.....thanks! the confusing part is that it's been working fine for days and I came in this morning and it wasn't working. I hate when that happens.
 
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,808
Members
452,944
Latest member
2558216095

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