Summary

The Excel XLOOKUP function is a modern and flexible replacement for older functions like VLOOKUP, HLOOKUP, and LOOKUP.  XLOOKUP supports approximate and exact matching, wildcards (* ?) for partial matches, and lookups in vertical or horizontal ranges.

Purpose 

Look up values in range or array

Return value 

Matching value in return array

Syntax

=XLOOKUP(lookup,lookup_array,return_array,[if_not_found],[match_mode],[search_mode])
  • lookup - The lookup value.
  • lookup_array - The array or range to search.
  • return_array - The array or range to return.
  • if_not_found - [optional] Value to return if no match found.
  • match_mode - [optional] 0 = exact match (default), -1 = exact match or next smallest, 1 = exact match or next larger, 2 = wildcard match, 3 = regex match.
  • search_mode - [optional] 1 = search from first (default), -1 = search from last, 2 = binary search ascending, -2 = binary search descending.

How to use 

XLOOKUP is a modern replacement for the VLOOKUP function. It is a flexible and versatile function that can solve a wide variety of lookup problems. XLOOKUP features include:

  • The ability to look up values in vertical or horizontal ranges.
  • Exact matching plus "next larger" and "next smaller" approximate matching.
  • Simple "contains" type matching with native Excel wildcards (* ? ~).
  • Complex pattern matching with "regex", a powerful text-matching language.
  • A reverse search option to find the last matching value in a range.
  • A super-fast binary search option when working with large datasets.

For a quick demonstration of XLOOKUP in action, watch this 3-minute video:

Video: Basic XLOOKUP example (3 minutes)

Example #1 - Basic exact match

By default, XLOOKUP will perform an exact match. In the example below, XLOOKUP is configured to retrieve the Sales amount from column E based on an exact match of the movie titles in column B. The formula in H5 is:

=XLOOKUP(H4,B5:B9,E5:E9)

XLOOKUP - basic exact match example

More detailed explanation here.

Example #2 - Basic approximate match

To enable an approximate match, provide a value for the match_mode argument. In the example below, XLOOKUP is used to calculate a discount based on quantity, which requires an approximate match. The formula in F5 sets match_mode to -1 to enable approximate match with "exact match or next smallest" behavior:

=XLOOKUP(E5,B5:B9,C5:C9,,-1)

XLOOKUP - basic approximate match example

More detailed explanation here.

Example #3 - Multiple values

XLOOKUP can return more than one value at the same time (i.e., an array of values) with one formula. The example below shows how XLOOKUP can be used to return three values with a single formula. The formula in C5 is:

=XLOOKUP(B5,B8:B15,C8:E15)

XLOOKUP - multiple value example

Notice the return array (C8:E15) includes 3 columns: First, Last, and Department. All three values are returned and spill into the range C5:E5.

Example #4 - Two-way lookup

XLOOKUP can perform a two-way lookup by nesting one XLOOKUP inside another. In the example below, the "inner" XLOOKUP retrieves an entire row (all values for Glass), which is handed off to the "outer" XLOOKUP as the return array. The outer XLOOKUP finds the appropriate group (B) and returns the corresponding value (17.25) as the final result.

=XLOOKUP(I6,C4:F4,XLOOKUP(I5,B5:B9,C5:F9))

XLOOKUP - two-way lookup example

More details here.

Example #5 - Not found message

When XLOOKUP can't find a match, it returns the #N/A error, like other match functions in Excel. Unlike the other match functions, XLOOKUP supports an optional argument called not_found that can be used to override the #N/A error when it would otherwise appear. Typical values for not_found include "Not found", "No match", "No result", etc. For example, to display "Not found" when no matching movie is found, you can use a formula like this:

=XLOOKUP(H4,B5:B9,E5:E9,"Not found")

XLOOKUP - not found example

You can customize this message as you like. You can even supply an empty string ("") to display nothing when a match is not found.

Note: Be careful if you supply an empty string ("") for not_found because it hides the #N/A error that XLOOKUP will display by default. If you want to see the #N/A error when a match isn't found, omit the not_found argument entirely.

Example #6 - Wildcard match

XLOOKUP supports wildcards to enable partial match lookups. Set the match_mode argument to 2 to enable wildcards in XLOOKUP. In the example below, XLOOKUP is configured to perform a "contains substring" match on the Titles of the books listed in column B. The search string is entered in cell G4, and the formula in cell G6 is:

=TRANSPOSE(XLOOKUP("*"&G4&"*",data[Title],data,,2))

XLOOKUP - contains substring example

Read a complete explanation here. For a slightly simpler formula, see this page.

Example #7 - Regex match

In Excel 365, XLOOKUP can match with Regular Expressions (also called "regex"). In the worksheet below, the goal is to look up the correct price of the product number entered in cell F4 using the product codes in column B. This problem is trickier than it looks. Each product code begins with 3 uppercase letters and ends with 2 or 3 uppercase letters. In the middle of the product code is a number between 2 and 4 digits. A wildcard match won't work because a number like 56 can appear inside other product codes. However, we can easily solve this problem with a "regex match". To enable a regex match in XLOOKUP, provide 3 for match_mode. Then supply a valid regex pattern as the lookup_value. In the worksheet below, the formula in cell F5 looks like this:

=XLOOKUP("[A-Z]{3}"&F4&"[A-Z]{2,3}",B5:B16,C5:C16,,3)
XLOOKUP - regex match example

The regex pattern in this formula is "[A-Z]{3}"&F4&"[A-Z]{2,3}". The translation is "3 uppercase letters A-Z, followed by the value in F4 (56), followed by 2-3 uppercase letters A-Z". Regex is a powerful and somewhat complex language. For a detailed explanation of this particular example (including the workbook), see this page.

Regex is a complicated and deep topic. For an introduction to regex in Excel, see Regular Expressions in Excel. Regex support in XLOOKUP is only available in Excel 365. 

Example #8 - complex criteria

With the ability to handle arrays natively, XLOOKUP can be used with complex criteria. In the example below, XLOOKUP is configured to match the first record where (1) the account begins with "x", and (2) the region is "east", and (3) the month is not April:

=XLOOKUP(1,(LEFT(B5:B16)="x")*(C5:C16="east")*NOT(MONTH(D5:D16)=4),B5:E16)

XLOOKUP - complex criteria example

Details: (1) simple example, (2) more complex example.

Example #9 - Binary search

XLOOKUP has a binary search mode option that performs lookups very quickly. To use binary search mode, data must be sorted in ascending or descending order. If values are sorted in ascending order, use the value 2 for search_mode. If values are sorted in descending order, use the value -2. Below is the generic syntax to enable binary search mode for an exact match lookup:

=XLOOKUP(A1,lookup_array,return_array,,0,2) // binary search A-Z
=XLOOKUP(A1,lookup_array,return_array,,0,-2) // binary search Z-A

For a more detailed example, see XLOOKUP binary search.

Match mode options

By default, XLOOKUP will perform an exact match. Match behavior is controlled by an optional argument called match_mode, which has the following options:

Match mode Behavior
0 (default) Exact match. Will return #N/A if no match.
-1 Exact match or the next smaller item.
1 Exact match or the next larger item.
2 Wildcard match (*, ?, ~)
3 Regex match

In December 2024, XLOOKUP was upgraded to allow a regex match in Excel 365. You can find a detailed example here. The XMATCH function was also updated to support regex. For more about regex in Excel, see Regular Expressions in Excel.

Search mode options

By default, XLOOKUP will start matching from the first data value. Search behavior is controlled by an optional argument called search_mode, which provides the following options:

Search mode Behavior
1 (default) Search from the first value
-1 Search from the last value (reverse)
2 Binary search values sorted in ascending order
-2 Binary search values sorted in descending order

Binary searches are very fast, but data must be sorted as required. If data is not sorted properly, a binary search can return invalid results that look perfectly normal. Detailed example here.

XLOOKUP benefits

XLOOKUP offers several important advantages compared to VLOOKUP:

  • XLOOKUP can look up data to the right or to the left of lookup values
  • XLOOKUP defaults to an exact match
  • XLOOKUP can work with vertical and horizontal data
  • XLOOKUP can perform a reverse search (last to first)
  • XLOOKUP can return entire rows or columns, not just one value

For a more detailed comparison, see XLOOKUP vs VLOOKUP.

Notes

  1. XLOOKUP can work with both vertical and horizontal arrays.
  2. XLOOKUP will return #N/A if the lookup value is not found.
  3. Like the INDEX function, XLOOKUP returns a reference as a result.
  4. The size of the lookup_array must be compatible with the return_array, or XLOOKUP will return #VALUE!
  5. If XLOOKUP points to an Excel Table in an external workbook, the other workbook must be open or XLOOKUP will return a #REF! error.
Dave Bruns Profile Picture

AuthorMicrosoft Most Valuable Professional Award

Dave Bruns

Hi - I'm Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.