|  

» Preventing a VLOOKUP Function from Returning an Error when an Exact Match is Not Found

Problem:

We want to create a formula to check whether each number in column B appears in List 1 (Column A).
For each successful search, the formula should return that number.
However, if an exact match is not found, the formula should return a text message to that effect, rather than an error.

Solution:

Use the IF, ISERROR, and VLOOKUP functions as shown in the following formula:
=IF(ISERROR(VLOOKUP(B2,$A$2:$A$9,1,FALSE)),"Number Not Found",VLOOKUP(B2,$A$2:$A$9,1,FALSE))


Rate This Tip
12 34 5
Rating: 4.25     Views: 6136
No comments have been submitted.
Click here to post comment
For Registered Users
Name
Comment Title
Comments