Please help a clueless beginner: Is there a similar function to VLOOKUP for data containing all-text?

leahw

New Member
Joined
Aug 8, 2022
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi, I wasn't able to find the answer to my question online and have no idea what I'm doing in Excel.

Out of a spreadsheet with thousands of company names and their associated data, I have a specific list of companies that I need email addresses for. Instead of manually searching for each one, is there a function I can use to determine the email addresses for me? I think I'm basically trying to do a VLOOKUP without any values.

Any help is appreciated. :)
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
VLOOKUP can search for many types of data, including both text and numbers.

For example:

=VLOOKUP("Bob Smith",A1:G100,4,0)

=VLOOKUP(134,A10:F22,6,0)

=VLOOKUP(A2,G1:M100,5,0)

Where A2 has a value that exists in the first column of the range, e.g. G1:G100.
 
Upvote 0
Solution
PLease be more descriptive. Helpful for others to troubleshoot if you could please share the demo of data
 
Upvote 0
VLOOKUP can search for many types of data, including both text and numbers.

For example:

=VLOOKUP("Bob Smith",A1:G100,4,0)

=VLOOKUP(134,A10:F22,6,0)

=VLOOKUP(A2,G1:M100,5,0)

Where A2 has a value that exists in the first column of the range, e.g. G1:G100.
Thank you so much. Your first example formula worked. I wasn't putting a "0" at the end and was instead entering "false."
 
Upvote 0
I wasn't putting a "0" at the end and was instead entering "false."
Welcome to the MrExcel board!
Using FALSE instead of 0 is exactly the same, provided that you don't enclose it in quote marks.

22 08 09.xlsm
ABCDE
1NameAge4242
2Tom Jones23
3Bob Smith42
Sheet2 (2)
Cell Formulas
RangeFormula
D1D1=VLOOKUP("Bob Smith",A1:B3,2,0)
E1E1=VLOOKUP("Bob Smith",A1:B3,2,FALSE)
 
Upvote 0

Forum statistics

Threads
1,214,943
Messages
6,122,380
Members
449,080
Latest member
Armadillos

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