Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • How To Create Frequency Distribution in Excel
  • How To Remove Duplicates In Excel Column Or Row?
  • How to Sort by Color in Excel
  • Subtotal function in Excel
  • How to conditionally sum numeric data in an Excel table using SUMIFS

References

  • Excel Advanced Lookup using Index and Match Functions
  • How to use Excel LOOKUP Function
  • How to get address of first cell in range in Excel
  • Multi-criteria lookup and transpose in Excel
  • To count total rows in a range in Excel

Data Validations

  • Excel Data validation date in specific year
  • Excel Data validation exists in list
  • Excel Data validation number multiple 100
  • Excel Data validation must contain specific text
  • How To Create Drop-down List in Excel

VLOOKUP without #N/A error in Excel

by

This tutorial shows how to calculate VLOOKUP without #N/A error in Excel using the example below;

Formula

=IFERROR(VLOOKUP(value,table,2,FALSE),"")

Explanation

To hide the #N/A error that VLOOKUP throws when it can’t find a value, you can use the IFERROR function to catch the error and return any value you like.

How the formula works

When VLOOKUP can’t find a value in a lookup table, it returns the #N/A error. The IFERROR function allows you to catch errors and return your own custom value when there is an error. If VLOOKUP returns a value normally, there is no error and the looked up value is returned. If VLOOKUP returns the #N/A error, IFERROR takes over and returns the value you supply.

If you have a lookup value in cell A1 and lookup values in a range named table, and you want a cell to be blank if no lookup is found, you can use:

=IFERROR(VLOOKUP(A1,table,2,FALSE),"")

If you want to return the message “Not found” when no match is found, use:

=IFERROR(VLOOKUP(A1,table,2,FALSE),"Not found")

IFNA option

In Excel 2013, the IFNA function is available to trap and handle #N/A errors specifically. The usage syntax is the same as with IFERROR:

=IFERROR(VLOOKUP(A1,table,2,FALSE),"Not found")
=IFNA(VLOOKUP(A1,table,2,FALSE),"Not found")

Older versions of Excel

In earlier versions of Excel that lack the IFERROR function, you’ll need to repeat the VLOOKUP inside an IF function that catches an error with ISNA or ISERROR. For example:

=IF(ISNA(VLOOKUP(A1,table,2,FALSE)),"",VLOOKUP(A1,table,2,FALSE))

Post navigation

Previous Post:

How to use Excel CHOOSE Function

Next Post:

Customize Ribbon In Excel

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • Not Equal To ‘<>‘ operator in Excel
  • SWITCH function: Description, Usage, Syntax, Examples and Explanation
  • OR function Examples in Excel
  • How to use Excel FALSE Function
  • IFNA function: Description, Usage, Syntax, Examples and Explanation

Date Time

  • Create date range from two dates in Excel
  • DAYS360 function: Description, Usage, Syntax, Examples and Explanation
  • Convert date string to date time in Excel
  • Pad week numbers with zeros in Excel
  • YEARFRAC function: Description, Usage, Syntax, Examples and Explanation

Grouping

  • Map inputs to arbitrary values in Excel
  • Map text to numbers in Excel
  • Group arbitrary text values in Excel
  • Group numbers at uneven intervals in Excel
  • Group numbers with VLOOKUP in Excel

General

  • List sheet names with formula in Excel
  • Find, Trace and Correct Errors in Excel Formulas using ‘Formula Auditing’
  • Subtotal invoices by age in Excel
  • How to fill cell ranges with random text values in Excel
  • 3D SUMIF for multiple worksheets in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning