braidoo

New Member
Joined
Sep 11, 2017
Messages
3
Hi so I have a reference issue with my Vlookup and I'm not sure why. All the data seems to be matching and the format of the cells match up.

If you look at sheet 1 column B should be looking up and copying information from Sheet 4 which should then have sheet 1 column E pull information from Sheet 2. Here's a link to a google docs version of the excel file.

https://docs.google.com/spreadsheets/d/15P8RbezE_9S3AKGg63v7uAV4NrymZ1KJBToE1L7L6NM/edit?usp=sharing

Any help would be greatly appreciated.
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Re: Vlookup Error Help

I don't have Excel to play with at the moment, but have you tried

Code:
=TRIM(VLOOKUP(D6,Sheet2!$B$2:$G$2765,5,True))
 
Upvote 0
Re: Vlookup Error Help

First of all your lookup values in col D are numbers ( or text looking like numbers)
All values in the lookup range ( col B ) on sheet 2 are text strings
I don't think you can use TRIM on an entire range
 
Upvote 0
Re: Vlookup Error Help

Your

=VLOOKUP(D6,'Sheet 4'!$B$11:$I$27,3,FALSE)

is trying to look up D6, hoursing "32077" as value in B11:B27 of Sheet4. The value does not exist in that range, hence #N/A.

You probably mean to look up in H11:H27 of Sheet4...
 
Upvote 0
Re: Vlookup Error Help

First of all your lookup values in col D are numbers ( or text looking like numbers)
All values in the lookup range ( col B ) on sheet 2 are text strings
I don't think you can use TRIM on an entire range

I have col D and col B as plain text.
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,427
Members
448,961
Latest member
nzskater

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