How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (2024)

If you’ve heard great things about XLOOKUP – you heard right!

Excel’s new XLOOKUP function is an improvement over the old (but very popular) VLOOKUP function.

Compared to other lookup functions, XLOOKUP:

  • Has built-in error handling
  • Can return multiple results (!)
  • Is much easier to use

If you master the XLOOKUP function, you can easily replace VLOOKUP, HLOOKUP, and maybe even INDEX MATCH🔍

Click here to download the Excel spreadsheet and tag along.

Table of Contents

  • How to use XLOOKUP (the simple way)

  • Advanced options of XLOOKUP

  • More XLOOKUP formula examples

  • Frequently asked questions

How to use XLOOKUP (the simple way)

Basically, you have to give only 3 parameters for XLOOKUP in excel.

  • Lookup value – The value that you need to search.
  • Lookup array – The search array for the lookup value.
  • Return array – The array to consider for the result.

Sounds easy, right? 😎

We will start the XLOOKUP function with a simple example.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (1)

Let’s use the XLOOKUP function and find the price for the given product code in cell F1.

  1. Enter an equal sign and start the XLOOKUP function.

=XLOOKUP(

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (2)

  1. Make a reference to the lookup value.

In this case, the lookup value is the product code we are looking for.

The XLOOKUP formula now looks like this:

=XLOOKUP(F1

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (3)

  1. Select the lookup array. This is the column to look for a match with the lookup value.

In this case, look for the product code (lookup value) in the column with product codes (column A).

=XLOOKUP(F1,A2:A7

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (4)

  1. Select the return array to get the result.

Because we want to return the price, select the price column.

The size of the lookup column and the size of the return column should be the same ⚠️

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (5)Kasper Langmann, Microsoft Office Specialist

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (6)

  1. Close the parenthesis and press Enter.

The XLOOKUP function in the F2 cell should be;

=XLOOKUP(F1,A2:A7,C2:C7)

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (7)

XLOOKUP will find the exact match of the product code in column A and return the price (from column C) in the same row.

This is the basic functionality of any lookup function/formula. But the way you just did it with XLOOKUP is much easier than with VLOOKUP or INDEX MATCH.

The new XLOOKUP has 3 other optional parameters.

Let’s explore the advanced options of XLOOKUP 🤔

Advanced options of XLOOKUP

Not found message

#N/A error is a very common error in lookup functions.

It happens when the lookup value does not exist in the lookup table.

The solution for the #N/A error was to use IFERROR or IFNA.

This is no longer necessary with XLOOKUP.

You just need to use the optional fourth argument of XLOOKUP [If not found].

If the value does not exist in the lookup array, indicate the value to be returned.

Let’s modify the XLOOKUP formula of the above example as follows.

=XLOOKUP(F1,A2:A7,C2:C7,”Check the code”)

Now change the product code to a code that is not in the data set.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (8)

If no valid match is found and [if not found] is not given, XLOOKUP returns the #N/A error.

Pro Tip!

The XLOOKUP can only do one lookup per data set.

Do you want to do a lookup across multiple sets of data that are saved in different sheets?

You can nest another XLOOKUP in the fourth argument (i.e., if not found) of the XLOOKUP Function.

Match type

The XLOOKUP function can return results for exact matches as well as for approximate matches.

This is the fifth argument of the XLOOKUP.la.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (9)

If you do not specify the match mode, the default value of 0 will be considered.

As a result, the function will return only the exact match.

-1 and 1 are very useful when you have thresholds.

-1 will return the exact match or the next smaller matching value.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (10)

1 will return the exact match or the next larger matching value.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (11)

To get a partial match lookup value, enter 2 for the match mode.

Then, you can do a wildcard character match.

? (Question Mark ) -This wildcard match is for any single character.

* (Asterisk mark) – This wildcard match is for any number of characters.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (12)Kasper Langmann, Microsoft Office Specialist

The below 2 example shows the XLOOKUP formula where the lookup value is given with wildcard match mode.

Let’s match product codes that start with the letter “B”.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (13)

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (14)

Search mode

Unlike the VLOOKUP function, the XLOOKUP function in Excel has 4 search mode options 😯

We can search a lookup value starting from the first value or the last matching value.

You can even perform a binary search for the lookup value.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (15)

The below example spreadsheet shows the XLOOKUP function with search lookup value first-to-last.

We want to get product codes starting with the letter “A”.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (16)

The below image shows the same example with the search mode -1 which is the search lookup value last-to-first value.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (17)

You can enter 2 for search mode and do a binary search from the first-to-last matching value if you have sorted the lookup array in ascending order.

You can enter -2 for search mode and do a binary search from the last-to-first matching value if you have sorted the lookup array in descending order.

More XLOOKUP formula examples

Now, it’s time to learn the wonders of the XLOOKUP formula using the below XLOOKUP examples.

XLOOKUP formula example #1

We can use nested XLOOKUP functions to combine vertical lookup and horizontal lookup.

In the below example, we need to find the net profit for March.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (18)

  1. Search “Net Profit ($ M)” from “column A” using the XLOOKUP function.

Now the formula is;

=XLOOKUP(A2,A5:A8

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (19)

  1. Finding the month as a horizontal lookup value by the Excel XLOOKUP function.

After entering the new function, the formula is;

=XLOOKUP(A2,A5:A8,XLOOKUP(B1,B4:D4

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (20)

  1. Enter the XLOOKUP return array in the outer XLOOKUP formula.

Give cell references to all the values in the data set.

Now your formula is;

=XLOOKUP(A2,A5:A8,XLOOKUP(B1,B4:D4,B5:D8

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (21)

  1. Close all the parentheses and press the “Enter” key.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (22)

The above formula works as a two-way lookup and returns the value at the intersection of the two.

Isn’t it easier than the traditional INDEX MATCH method? 🥳

XLOOKUP formula example #2

You can also use nested XLOOKUP functions in Excel with the SUM function and get the total between two ranges.

Let’s use the below example in the Excel file.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (23)

  1. First, enter the SUM function in excel.

The Formula is;

=SUM(

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (24)

  1. Enter an XLOOKUP and search the net profit of the start month.

=SUM(XLOOKUP(B2,B4:D4,B5:D5)

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (25)

  1. Enter a colon symbol to get the net profit of the end month using the XLOOKUP formula.

The updated formula is;

=SUM(XLOOKUP(B2,B4:D4,B5:D5):XLOOKUP(C2,B4:D4,B5:D5)

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (26)

  1. Close the parenthesis and press the “Enter” key.

You can get the total net profit between February to March.

How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (27)

The above formula can be used to get the total of a dynamic array.

That’s it – Now what?

Now you are proficient with the XLOOKUP – superhero of the lookup functions 🥳

You can easily replace many complicated functions with XLOOKUP.

You can also combine XLOOKUP with SUM, COUNT, and AVERAGE functions and get more dynamic results for your financial models.

But XLOOKUP is not the only important function out there at all 🙋🏻‍♂️

Functions like IF and SUMIF are other ‘Hall of Famers that you absolutely need to learn.

Click here to enroll in my free 30-minute online course and learn IF, SUMIF, and data cleaning.

Other resources

The XLOOKUP function is currently available to Microsoft 365 Excel users.

You can read our article about Microsoft 365 to understand its best features 😍

If you don’t have Microsoft 365 there are other great lookup options like VLOOKUP, HLOOKUP, and INDEX MATCH.

Frequently asked questions

How to use XLOOKUP with two Excel sheets?

XLOOKUP can only look up one data set at a time.

So, we must use nested XLOOKUP with 2 Excel sheets.

First, enter the XLOOKUP for 1 Excel sheet.

As the 4th parameter, add a new XLOOKUP with the lookup and return arrays from the 2nd sheet.

Close parentheses. Press “Enter”.

The XLOOKUP will start the search on the 1st sheet and then move to the 2nd sheet.

Why is XLOOKUP not available on my computer?

XLOOKUP is currently available to Microsoft 365 users and Excel 2021 users.

So if a person sent you a file that contains XLOOKUP but you are using an older version of Excel, it won’t work.

In that case, you need to purchase Microsoft 365 to use XLOOKUP in excel.

Kasper Langmann2024-05-01T14:05:33+00:00
How to Use XLOOKUP in Excel: Step-By-Step + Examples (2024) (2024)
Top Articles
Latest Posts
Article information

Author: Terrell Hackett

Last Updated:

Views: 5994

Rating: 4.1 / 5 (72 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Terrell Hackett

Birthday: 1992-03-17

Address: Suite 453 459 Gibson Squares, East Adriane, AK 71925-5692

Phone: +21811810803470

Job: Chief Representative

Hobby: Board games, Rock climbing, Ghost hunting, Origami, Kabaddi, Mushroom hunting, Gaming

Introduction: My name is Terrell Hackett, I am a gleaming, brainy, courageous, helpful, healthy, cooperative, graceful person who loves writing and wants to share my knowledge and understanding with you.