View Single Post
 
Old 09-12-2015, 02:49 AM
Jaffary Jaffary is offline Windows 7 32bit Office 2010 32bit
Novice
 
Join Date: Feb 2014
Posts: 3
Jaffary is on a distinguished road
Default

you can do it with
1) VLOOKUP()
2) INDEX() MATCH()

type the below formula in sheet2 cell B2
(suppose in Sheet1, names are mentioned in column A and phone numbers are mentioned in column B)

=IFERROR(VLOOKUP(A2,Sheet1!A:B,2,false),"")

here ...
A2 = is the name on Sheet2, whom phone number u want to search
A:B = is a range on Sheet1, where your data exists
2 = is used to get data from 2nd column of range
False = in your case, it will be.
Reply With Quote