Match() function
Match() function MATCH is an Excel function used to locate the position of a lookup value in a row, column, or table. MATCH supports approximate and exact matching, and wildcards (* ?) for partial matches. Often, the INDEX function is combined with MATCH to retrieve the value at the position returned by MATCH. Syntax The syntax for the MATCH function in Microsoft Excel is: =MATCH (lookup_value, lookup_array, [match_type]) Parameters or Arguments lookup_value The value to search for in the array. lookup_array A range of cells that contains the value that you are searching for. match_type Optional. It the type of match that the function will perform. The possible values are: Match_type Explanation 1 (default) The MATCH function will find the largest value that is less than or equal to value. You should be sure to sort your array in ascending order. If the match_type parame...

Comments
Post a Comment