Excel

Excel Tips 🍯 | Find Position with MATCH Function! πŸ”

Youngam 2025. 7. 1. 22:04
728x90
 

Hey guys πŸ™‹‍♀️
Back again with another Excel tip!
Today, I want to share a super handy function —
It’s the MATCH function 🎯


So, what does MATCH do? πŸ€“

To put it simply,
πŸ‘‰ It tells you the position of a value in a given range!

For example,
Let's say cells A1 to A5 contain A, B, C, D, E.

=MATCH("C", A1:A5, 0)

This will return 3 because “C” is the third item in the range πŸ’‘



 

 


 

MATCH Function Syntax πŸ“

=MATCH(lookup_value, lookup_array, [match_type])
  • lookup_value: the value you're searching for (e.g. "C")
  • lookup_array: where you’re searching (e.g. A1:A5)
  • [match_type]:
    • 0: Exact match (most commonly used)
    • 1: Less than or equal (requires ascending order)
    • -1: Greater than or equal (requires descending order)

Honestly, just using 0 is enough for most situations 😎


MATCH works solo…

πŸ‘‰ But it’s even better with INDEX! πŸ’ͺ

=INDEX(B1:B5, MATCH("C", A1:A5, 0))

What’s happening here?
MATCH finds the position of “C” in column A,
and INDEX pulls the value from column B at that same position πŸ™Œ
In short: you get the data that corresponds to “C” πŸ’Ό



 

 
 

 

 


 

To Wrap Up πŸ“Œ

The MATCH function is perfect for:
βœ” Finding positions in data
βœ” Using with INDEX for lookups
βœ” Automating your templates

If you're into Excel, this is a must-know πŸ’»βœ¨

Next time, I’ll cover INDEX, VLOOKUP, and XLOOKUP with simple examples too! Stay tuned πŸ˜„

728x90