» Using a VLOOKUP Formula to Check If a Value Exists
CATEGORY - Excel Formula and Function
VERSION - All Microsoft Excel Versions
Column B contains values to look up in List1 (Column A).
We want to modify the results returned by the VLOOKUP function to include the lookup term as well as an indication of whether or not the value was found.
Solution:
Use the IF, ISNA, and VLOOKUP functions as shown in the following formula:
=IF(ISNA(VLOOKUP(B2,$A$2:$A$7,1,FALSE)),B2&"Not Found",VLOOKUP(B2,$A$2:$A$7,1,FALSE)&"Found")
Book Store:
Recommended Books:
- How to Use Financial Statements: A Guide to Understanding the Numbers
- Excel Charts
- Treason: Liberal Treachery from the Cold War to the War on Terrorism
- The McGraw-Hill 36-Hour Course in Finance for Nonfinancial Managers
- Keys to Reading an Annual Report (Barron's Business Keys)
- Special Edition Using Microsoft Outlook 2002
Using a VLOOKUP Formula to Check If a Value Exists
skip
Great tips - I was on the microsoft site for over an hour trying to figure it out, took me 5 minutes with this tip. Thanks!
Using a VLOOKUP Formula to Check If a Value Exists
gvasuus
Worked well. Thanks a lot.

