Vlookup across multiple sheets?

Tintyn

New Member
Joined
Feb 19, 2015
Messages
1
Hi guys,

I'm having trouble getting 2 formulas right the first one should be easy...

cust no | Customer
--------------+--- -----------
blank cell1 - Customer Name 1
blank cell2 - Customer Name 2


I have 2 sheets one has empty customer number fields next to 645 customer names (potential customer as well as existing), the second sheet contains filled in customer number fields next to a much smaller amount of customer names (existing customer). What i'm trying to do is populate the blank customer column with customer numbers from the second but only where the 2 customer names match perfectly. I'm sure vlookup is the one for this I just cant seem to get syntax right.

Secondly i've got a month by month budget itemized by customer in one sheet and I need the data exported into another xml sheet by my pos software at the end of month to be scraped and filled into the budget sheet.

Any help greatly appreciated!

Tintyn
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Because VLOOKUP expects the First column to be the Key and cannot reference column -1

INDEX Match is the way to go


=INDEX(ListofExistingCust!$B$4:$C$11,MATCH(C4,ListofExistingCust!$C$4:$C$11,0),1)

C4
is the customer name on your long list sheet with cust no's


ListofExistingCust!$B$4:$C$11

CustNO CustomerName
12345 Big Cust
67895 Small Cust



ListofExistingCust!$C$4:$C$11

CustomerName
A Cust
B Cust
Big Cust
Good Cust
Small Cust
 
Upvote 0

Forum statistics

Threads
1,223,239
Messages
6,170,947
Members
452,368
Latest member
jayp2104

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