jtedmonson42

New Member
Joined
Jan 22, 2017
Messages
23
So I'm trying to return what is basically a score by looking up an ID and matching it. I condensed two sheets to one table to draw what I need. The issue I thought I was having was that the ID numbers were preceded by letters to distinguish what type of ID. Example ABC 12345678. So I used....

=IFERROR(RIGHT(YMS!G4, LEN(YMS!G4)-SEARCH(" ", YMS!G4,1)), "") to cut out the identifier letters at the beginning. Now when I use the following VLookup I'm getting a n/a error.

=VLOOKUP(C4,Export!$A$1:$F$75,4,FALSE).


So is the problem that even with the formula to only pull the numbers is there the VLOOKUP is still looking for the original value?

Thanks.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
The RIGHT function returns a text, not a number. See if this works

=VLOOKUP(--C4,Export!$A$1:$F$75,4,FALSE)

M.
 
Upvote 0

Forum statistics

Threads
1,215,869
Messages
6,127,414
Members
449,382
Latest member
DonnaRisso

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