Microsoft Excel MATCH Function Help |
![]() Call us at: 1.805.498.7162 1.805.558.9277-- |
|
|
MATCH Function HelpMATCH Function DefinitionReturns the position (index) of an item in an array or range that matches a specified value. Use MATCH on a single row or column of table to find the position of name, number, date...etc. Remember though the position returned is relative to the range which means if you look at a range C3:C10 and find widget3 in it, MATCH returns 1 because cell C3 is the first cell in the range being scanned. If the range started at C1 then it would return 3 because it is the 3 cell down. This function can be used in combination with the INDEX function to create a powerful VLOOKUP type function that hunts information down in both column and rows at once. MATCH Function Syntax=MATCH(lookup_value,lookup_array,[match_type]) [] bracket means argument is optional which means you do not have to fill the slot. MATCH Function Argument Definitionslookup_value: This is the value (name, number, date) you use to find the value you want in a column or row of a table.
lookup_array: This is a contiguous range of cells, row or column, containing possible lookup values. It can also be an array. match_type: This can be three preset numbers, -1, 0 or 1. Match_type specifies how Microsoft Excel matches lookup_value with values in lookup_array. Do not default this value, always include it!!!! If you are searching for a specific value which is the case in most instances, always put 0 or you might end up with the wrong match.
MATCH Function Tips
|