Looking up Telephone Numbers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Good Day
I have not found anything in the discussion group relating to my query so
please point me in the right direction if there is.
I have a sheet with 1100 retail stores.
Details include branch numbers, addresses, telephone numbers etc.
Branch numbers are in Column A and phone numbers are in Column H.
I am trying to find a solution to finding store telephone numbers without
using Vlookup, Find etc.
Can a Form possibly be created where I can enter the store number and only
the Telephone number is found and displayed??
Regards Peter
 
It's still easiest with a formula ..

Assuming your source data as posted is in Sheet1

Then in Sheet2,
you could have B2 for the input of the branch#,
and drop this in C2:
=IF(B2="","",INDEX(Sheet1!H:H,MATCH(B2,Sheet1!A:A,0)))
to return the tel#

Dress up Sheet2 nicely to taste and hide away Sheet1 ..
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top