MATCH Function

The MATCH function returns the position of a value in an array or list.
XMATCH was added in Excel 2021 to replace this function.
Before you upgrade to XMATCH you need to read MATCH vs XMATCH
This function is not case sensitive.

microsoft excel docs

Return the Exact Position (unique values)

This function will return the relative position of the "lookup_value" in the "lookup_array".
When the "match_type" argument is 0 an exact match is found.
The list does not have to be sorted when looking for an exact match.

microsoft excel docs

Return the Exact Position (item does not exist)

If the "lookup_value" is not in the list, #N/A is returned.
When the "match_type" argument is 0 an exact match is found.
The list does not have to be sorted when looking for an exact match.

microsoft excel docs

Return the Exact Position (case sensitive)

The MATCH function is not case sensitive.
When the "match_type" argument is 0 an exact match is found.
This means that upper case and lower case characters are equal (for example Tokyo = TOKYO).
You can perform a case sensitive match by using the EXACT function.

microsoft excel docs

Return the Exact Position (first occurrence, sorted or not sorted)

This function will always return the position of the first occurrence, starting at the top.
When the "match_type" argument is 0 an exact match is found.
The list does not have to be sorted to return the first occurrence.

microsoft excel docs

Return the Exact Position (last occurrence, not sorted)

You can get the last occurrence when the list is not sorted by using the MAX, MIN, IF and ROW functions.
The largest value from an array of matching row numbers.
You can swap the MIN function for LARGE or SMALL to return the nth largest or nth smallest positions.

microsoft excel docs

Return the Exact Position (with wildcard *)

An asterisk (*) matches any sequence of characters.
The "match_type" argument must be 0.
You can have an asterisk as the first character.

microsoft excel docs

Return the Exact Position (with wildcard ?)

A question mark (?) matches any single character.
The "match_type" argument must be 0.
You can have a question mark as the first character.

microsoft excel docs

Return the Closest Position (next smallest)

When the "match_type" argument is 1 the closest value, less than (or equal to) "lookup_value" is returned.
When the "match_type" argument is 1 the function assumes the list is sorted into Ascending Order.
This list has been sorted into ascending order, smallest first (a-z).

microsoft excel docs

Return the Closest Position (next largest)

When the "match_type" argument is -1 the closest value, greater than (or equal to) "lookup_value" is returned.
When the "match_type" argument is -1 the function assumes the list is sorted into Descending Order.
This list has been sorted into descending order, largest first (z-a).

microsoft excel docs

Return the Closest Position (with wildcards)

You cannot have a wildcard character as your first character when the "match_type" argument is not 0.
If your "lookup_value" begins with an asterisk and the "match_type" argument is not 0, the "lookup_value" is taken to be a literal string.
If your "lookup_value" begins with a question mark and the "match_type" argument is not 0, the "lookup_value" is taken to be a literal string.
When the "match_type" argument is 1 the closest value, less than (or equal to) "lookup_value" is returned.
When the "match_type" argument is 1 the function assumes the list is sorted into Ascending Order.

microsoft excel docs

Combining with INDEX

You can use the INDEX and MATCH functions as an alternative to using the VLOOKUP or HLOOKUP functions.


Combining with VLOOKUP

A two-way lookup can be achieved using a VLOOKUP and MATCH combination.
A two-way lookup is when you return the intersection of a matching column with a matching row.


Combining with HLOOKUP

A two-way lookup can be achieved using a HLOOKUP and MATCH combination.
A two-way lookup is when you return the intersection of a matching column with a matching row.


© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited TopPrevNext