Vlookup

bohon79

New Member
Joined
Jul 2, 2015
Messages
45
Hello,

have in issue I need help with. I have a vlookup in all my other cells that works. The problem I am having is it will not see anything to the left only to the right of the cell. below is the vlookup I have:

=IF(ISERROR(VLOOKUP(B6,PERSONNEL!B2:H500,7,FALSE)),"",IF(LEN(VLOOKUP(B6,PERSONNEL!B2:H500,7,FALSE))=0,"",VLOOKUP(B6,PERSONNEL!B2:H500,7,FALSE)))

it works perfect for all the cells past B2.

the problem is having it look to the left of b2 and returns a N/A.

any help would be thankfull.

Erick
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Still confused as it returns a 0

the way I have it setup is as follows

sheet 1 where the data goes into

column a column b
status name

sheet 2 is the main data

column a column b
status name

I want status data on sheet 2 to go into status on sheet 1

Erick
 
Upvote 0
hello,

have one more issue. I found the correct code but now when I have nothing in the cell
I get a N/A. I would like that cell to be blank if nothing is in the cell that it looks at. below is the code that works:

=INDEX(PERSONNEL!$A$2:$A$20,MATCH(HQS!B6,PERSONNEL!$C$2:$C$20,0))

Erick
 
Upvote 0
Hi, like this maybe:

=IF(HQS!B6="","",INDEX(PERSONNEL!$A$2:$A$20,MATCH(HQS!B6,PERSONNEL!$C$2:$C$20,0)))

Or if this formula is being placed in the HQS sheet then..

=IF(B6="","",INDEX(PERSONNEL!$A$2:$A$20,MATCH(B6,PERSONNEL!$C$2:$C$20,0)))
 
Upvote 0

Forum statistics

Threads
1,223,912
Messages
6,175,340
Members
452,638
Latest member
Oluwabukunmi

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