Lookup Functions in Excel
Lookup Functions in Excel
Functions in
Microsoft
Excel
1
4. Index()
The INDEX function returns a value or the
reference to a value from within a table or
range.
There are two ways to use the INDEX function:
If you want to return a reference to specified cells. Returns the
reference of the cell at the intersection of a particular row and
column. If the reference is made up of non-adjacent selections,
you can pick the selection to look in.
Syntax:
=INDEX(reference, row_num, [column_num], [area_num])
2
5. Match()
Searches for a specified item in a range of
cells, and then returns the relative position
of that item in the range.
Syntax:
=MATCH(lookup_value, lookup_array, [match_type])
Pos(#)
Pos(1)
Pos(2)
Pos(3)
Pos(4)
6. Index() + Match()
The combination of the INDEX and MATCH
functions. The INDEX function uses the
result of the MATCH function as its
argument.
Syntax:
=INDEX(Reference Table ,
[Match(SearchKey,Range,Type)/StaticRowPosition],
[Match(SearchKey,Range,Type)/StaticColumnPosition])
Example 01:
6. Index() + Match()
The combination of the INDEX and MATCH
functions. The INDEX function uses the
result of the MATCH function as its
argument.
Syntax:
=INDEX(Reference Table ,
[Match(SearchKey,Range,Type)/StaticRowPosition],
[Match(SearchKey,Range,Type)/StaticColumnPosition])
Example 02:
7. Xlookup()
Xlookup function is an improved version
of Vlookup and Hlookup that works in any
direction and returns exact matches by
default, making it easier and more
convenient than its predecessor. Xlookup
is simpler to use and less prone to error.
Syntax:
=XLOOKUP(lookup_value, lookup_array, return_array,
[if_not_found], [match_mode], [search_mode])
Thank You…