Pinterest Pixel

Unlock the Power of the MATCH Function – Top 3 Examples

Microsoft Excel, a powerful and widely-used spreadsheet software, offers a plethora of functions to assist users in... read more

Download Excel Workbook
John Michaloudis
Posted on

Overview

Unlock the Power of the MATCH Function - Top 3 Examples | MyExcelOnline

Microsoft Excel, a powerful and widely-used spreadsheet software, offers a plethora of functions to assist users in managing and analyzing data effectively. Among these functions, the MATCH function stands out as a valuable tool to all users.

Whether you’re working on simple data entry tasks or complex data analysis projects, understanding how to use the MATCH function can significantly enhance your efficiency and accuracy.

In this article, we will cover the following topics in detail –

Download the Excel Workbook below to follow along and understand how to use the MATCH function in Excel –

download excel workbookMATCH-Function-in-Excel.xlsx

 

Introduction to MATCH function

The MATCH function in Excel can be used to locate the position of a lookup value in a row, column, or table. This can be useful when you have a large dataset and need to find the exact position of a certain value, such as when you’re looking for a particular product in an inventory list or trying to match a name to an employee ID.

The syntax of the MATCH function is –

=MATCH(lookup_value, lookup_array, [match_type])

  • lookup_value – The value that you want to match in the lookup array. It can be a value (number, text, or logical value) or a cell reference to a number, text, or logical value. Required.
  • lookup_array – The range of cells being searched. Required.
  • match_type – It specifies the match type. Optional.
    • 1: Finds an exact match or the next smallest value. The lookup_array needs to be sorted in ascending order (Default).
    • 0: Finds an exact match for the lookup_value.
    • -1: Finds an exact match or the next largest value. The lookup_array needs to be sorted in descending order.
See also  CountIf Formula in Excel

 

Exact Match

Imagine you have a Product List and seek to determine the position of a specific item within this list. In such a scenario, the MATCH function would come into play.

Unlock the Power of the MATCH Function - Top 3 Examples

Let’s use the MATCH function to determine the position of the Laptop in the list provided.

STEP 1: Enter the MATCH function.

=MATCH(

Unlock the Power of the MATCH Function - Top 3 Examples

STEP 2: Enter the first argument i.e. lookup_value. Here, it is Laptop mentioned in cell D1.

=MATCH(D1, 

Unlock the Power of the MATCH Function - Top 3 Examples

STEP 3: Enter the second argument i.e. lookup_array. Here, it is mentioned in cell A2:A16.

=MATCH(D1,A2:A16,

Unlock the Power of the MATCH Function - Top 3 Examples

STEP 4: Enter the second argument i.e. match_type. Here, it is 0 for an exact match.

=MATCH(D1,A2:A16,0)

Unlock the Power of the MATCH Function - Top 3 Examples

The position of the Laptop is 2 in the list.

Unlock the Power of the MATCH Function - Top 3 Examples

 

Approximate Match

For an approximate match search, you must configure the match_type to either 1 (exact match or nearest smaller value) or -1 (exact match or nearest smaller value).

  • If you need an exact match or nearest smaller value; you need to sort the data in ascending order.
  • If you need an exact match or nearest larger value; you need to sort the data in descending order.
See also  What is Six Months from Today? Free Excel Date Calculator

The approximate match is useful when you have a range of values representing sales figures and you want to find the position of the highest value that’s less than or equal to a certain target.

In the example shown below, there is a range of values representing sales figures and you want to find the position of the highest value that’s less than or equal to a certain target. We need to know the position of sales amount – $12,000 with the help of the Match function.

Unlock the Power of the MATCH Function - Top 3 Examples

Follow the steps below to achieve the results –

STEP 1: Enter the MATCH function.

=MATCH(

Unlock the Power of the MATCH Function - Top 3 Examples

STEP 2: Enter the first argument i.e. lookup_value. Here, it is Laptop mentioned in cell D1.

=MATCH(D1, 

Unlock the Power of the MATCH Function - Top 3 Examples

STEP 3: Enter the second argument i.e. lookup_array. Here, it is mentioned in cell A2:A16.

=MATCH(D1,A2:A8,

Unlock the Power of the MATCH Function - Top 3 Examples

STEP 4: Enter the second argument i.e. match_type. Here, it is 1 as we need to know the position for an exact match or the next smaller.

=MATCH(D1,A2:A8,1)

Unlock the Power of the MATCH Function - Top 3 Examples

Since the next smallest value for 12,000 is 10,000; Excel has displayed the result as the position of 10000 i.e. 4.

Unlock the Power of the MATCH Function - Top 3 Examples

Now, if we want to search for the next largest value, replace the third argument with -1. Here, since the next larger value is 50000, Excel has displayed the position of 50000 i.e. 3.

See also  How to Remove Leading and Trailing Spaces in Excel

=MATCH(D1,A2:A8,-1)

Unlock the Power of the MATCH Function - Top 3 Examples

 

Wildcard MATCH

Wildcards in Excel are special characters that you can use as placeholders to represent one or more characters in a text string. It can be used when you are unsure about the exact characters present at a specific location.

There are two main wildcards used in Excel:

  1. Asterisk (*) – The asterisk wildcard represents any sequence of characters, including no characters. For example:
    • “app*” can match “apple,” “application,” “approve,” etc.
    • “*ing” can match “singing,” “running,” “writing,” etc.
  2. Question Mark (?) – The question mark wildcard represents any single character. For example:
    • “h?t” can match “hat,” “hot,” “hit,” etc.
    • “?it” can match “sit”, “hit”, etc.

Let us look at an example to understand how to use wildcards in the MATCH function in Excel.

Unlock the Power of the MATCH Function - Top 3 Examples

Here, we want to know the position of the product name starting with C.

STEP 1: Enter the MATCH function.

=MATCH(

Unlock the Power of the MATCH Function - Top 3 Examples

STEP 2: Enter the first argument i.e. lookup_value. Here, it is “C*” mentioned in cell D1.

=MATCH(D1, 

Unlock the Power of the MATCH Function - Top 3 Examples

By incorporating asterisks behind the letter C, the function searches for any product name starting with the letter C.

STEP 3: Enter the second argument i.e. lookup_array. Here, it is mentioned in cell A2:A16.

=MATCH(D1,A2:A16,

Unlock the Power of the MATCH Function - Top 3 Examples

STEP 4: Enter the second argument i.e. match_type. Here, it is 0 for an exact match.

=MATCH(D1,A2:A16,0)

Unlock the Power of the MATCH Function - Top 3 Examples

Here is the result!

Unlock the Power of the MATCH Function - Top 3 Examples

 

Conclusion

See also  Creative Ways to Subtract in Excel

The MATCH function in Excel is a powerful tool that allows you to search for a specified value in a range of cells and returns the relative position of that value within the range. From exact, approximate, to wildcard matches, MATCH empowers users to locate data points precisely and adapt to dynamic patterns.

Further Learning:

Click here to learn all about it!

If you like this Excel tip, please share itEmail this to someone

email

Pin on Pinterest

Pinterest

Share on Facebook

Facebook

Tweet about this on Twitter

Twitter

Share on LinkedIn

Linkedin

Unlock the Power of the MATCH Function - Top 3 Examples | MyExcelOnline
Founder & Chief Inspirational Officer at MyExcelOnline.com

John Michaloudis is a former accountant and finance analyst at General Electric, a Microsoft MVP since 2020, an Amazon #1 bestselling author of 4 Microsoft Excel books and teacher of Microsoft Excel & Office over at his flagship Academy Online Course.

Get Video Training

Advance your Microsoft Excel & Office Skills with the MyExcelOnline Academy!

Dramatically Reduce Repetition, Stress, and Overtime!
Exponentially Increase Your Chances of a Promotion, Pay Raise or New Job!

Learn in as little as 5 minutes a day or on your schedule.

Learn More!