Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Returning Blanks with VLOOKUP.
Written by Allen Wyatt (last updated February 5, 2026)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365
When you use VLOOKUP to return a value from a data table, the function does not differentiate between blanks and zero values in what it returns. If the source value is zero, then VLOOKUP returns 0. Likewise, if the source is blank, then VLOOKUP still returns the value 0. For some purposes, this may not do—you need to know whether the cell being looked up is blank or if it really contains a 0.
If you are using a newer version of Excel (Excel 2021 or later), you might think that using XLOOKUP could provide a solution. It doesn't, unfortunately. Just like VLOOKUP, XLOOKUP doesn't discriminate between blanks and zero values in what it returns. The reason that VLOOKUP and XLOOKUP don't discriminate is that both functions are designed to return numeric values and a blank is not a numeric value.
This is probably a good time to mention that it can get a little confusing in talking about "blanks." Technically we are talking about three different types of data here. If a cell is empty, then it is just that—empty, meaning that it contains nothing. (I know, "empty" is not a data type. It is simply a condition of a cell.) The problem is that functions and formulas cannot return nothing, they must return something. As already mentioned, the VLOOKUP function is designed to return numeric values. The source being accessed by VLOOKUP can be evaluated and if it is empty, then a blank can be returned, but a "blank" isn't the same as "empty." A blank is a string that contains nothing, meaning it is a text value.
One evaluation solution relies on the fact that even though VLOOKUP returns a 0 for a blank cell, it will correctly report the length of the source cell. If you use the LEN function on what is returned, an empty source cell results in a length of 0, while a source cell containing a 0 results in a length of 1. This means you could use the following formula:
=IF(LEN(VLOOKUP(B1,D:E,2,FALSE))=0,"",VLOOKUP(B1,D:E,2,FALSE))
In this case, if the length of what VLOOKUP returns is 0, then the formula returns a blank string. Only if the length is not 0 is the result of the VLOOKUP returned.
There are other variations on this same concept, each testing a different characteristic of the data being referenced and then making the decision as to whether to actually look up that data. (As you can surmise, the variation you develop for your needs will depend on the "different characteristics of the data being referenced.")
Here's a variation, for example, that directly tests to see if the source is blank:
=IF(VLOOKUP(B1,D:E,2,FALSE)="","",VLOOKUP(B1,D:E,2,FALSE))
A common shortcut to force a blank return is to append an empty string to the end of the formula, like this:
=VLOOKUP(B1,D:E,2,FALSE)&""
The formula can also be modified to check the source cell for multiple conditions. For instance, this variation returns a blank if the source is blank or if the source contains an error value (such as #N/A):
=IFERROR(TRIM(VLOOKUP(B1,H:H,1,FALSE)),"")
While these last two formulas work, it is important to understand that they convert all returned values—including real numbers—into text. This can cause problems in later calculations. For this reason, the IF or LEN methods are generally preferred if you need to preserve the numeric data type for returned numbers.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12518) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Returning Blanks with VLOOKUP.
Professional Development Guidance! Four world-class developers offer start-to-finish guidance for building powerful, robust, and secure applications with Excel. The authors show how to consistently make the right design decisions and make the most of Excel's powerful features. Check out Professional Excel Development today!
Character codes are the numeric values used, by a computer, to signify various alphanumeric characters. You can use the ...
Discover MoreEver want the IF function to only return a value if the condition it is testing is true, and not if the condition is ...
Discover MoreThe SUMIFS function can be quite powerful in conditionally summing information based on criteria you specify. This tip ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2026-02-01 10:52:03
J. Woolley
The Tip's 2nd formula
=IF(VLOOKUP(B1, D:E, FALSE)="", "", VLOOKUP(B1, D:E, FALSE))
is probably supposed to be
=IF(VLOOKUP(B1, D:E, 2, FALSE)="", "", VLOOKUP(B1, D:E, 2, FALSE))
This can be simplified by using one of the following two Excel 2021 formulas:
=LET(x, VLOOKUP(B1, D:E, 2, FALSE), IF(x="", "", x))
=LET(x, XLOOKUP(B1, D:D, E:E), IF(x="", "", x))
The Tip's 3rd formula
=VLOOKUP(B1,D:E,2,FALSE)&""
returns text. Here's another text formula
=TRIM(VLOOKUP(B1, D:E, 2, FALSE))
The Tip's 4th formula
=IFERROR(TRIM(VLOOKUP(B1, H:H, 1, FALSE)), "")
is perhaps supposed to be
=IFERROR(TRIM(VLOOKUP(B1, D:E, 2, FALSE)), "")
The most likely error results if B1 is not found in column D, so here's a comparable Excel 2021 text formula:
=TRIM(XLOOKUP(B1, D:D, E:E, ""))
But this Excel 2021 formula handles the error and doesn't force a text result:
=LET(x, XLOOKUP(B1, D:D, E:E, ""), IF(x="", "", x))
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2026 Sharon Parq Associates, Inc.
Comments