How to auto lookup data

kimberly090

Board Regular
Joined
May 22, 2014
Messages
99
I have my excel data like this in a workbook named :Customer_Information

I was looking for a formula that able to allow me to auto retrieve the rest of the detail when specific data is being insert.

Here will be my data inside my workbook, Customer_Information:
2_zpsc3aaf883.jpg


This will be the data in another workbook call PhoneBook:

I'm looking for a formula to auto retrieve the rest of the data when I type in the Name field.

For example when I type in Jack in B2, then on B3:B5 it will look for the data(Jack) in Customer_Information workbook and auto retrieve the data in the following field.

I was thinking to use VLOOKUP but it keep show me error.
1_zps54072e2b.jpg

Thank you.
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
What version of the Excel to you have?

if 2007+ then use first formula otherwise second


Excel 2010
AB
1NameResult
2 
3Jack2
Sheet2
Cell Formulas
RangeFormula
B2=IFERROR(VLOOKUP(A2,Sheet3!$A$1:$B$24,2,0),"")
B3=IF(ISERROR(VLOOKUP(A3,Sheet3!$A$1:$B$24,2,0)),"",VLOOKUP(A3,Sheet3!$A$1:$B$24,2,0))
 
Upvote 0
Phone Book

B3, just enter and copy down:

=VLOOKUP(B$2,Customer_information!B:E,MATCH($A3,INDEX(Customer_information!B:E,1,0),0),0)
 
Upvote 0

Forum statistics

Threads
1,215,809
Messages
6,127,010
Members
449,351
Latest member
Sylvine

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