Purpose
Return value
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:
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)
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)
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)
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))
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")
You can customize this message as you like. You can even supply an empty string ("") to display nothing when a match is not found.
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))
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)
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)
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
- XLOOKUP can work with both vertical and horizontal arrays.
- XLOOKUP will return #N/A if the lookup value is not found.
- Like the INDEX function, XLOOKUP returns a reference as a result.
- The size of the lookup_array must be compatible with the return_array, or XLOOKUP will return #VALUE!
- If XLOOKUP points to an Excel Table in an external workbook, the other workbook must be open or XLOOKUP will return a #REF! error.