MATCH
Returns a relative position number of a matching cell inside a specified cell range.
Syntax
=MATCH(value, SearchRange, [Type])
Arguments
Name | Type | Description |
---|---|---|
value | Number | Value to search for. |
SearchRange | Range | A cell range to search in. |
Type (optional) | Number | Search type with the following options: 1 : (Default) Find the largest value in cell range which is less than or equal to specified value. Table must be in ascending order. 0 : Find the first value which match exactly specified value. Here the wildcards ? and * are supported. -1 : Find the smallest value in cell range which is greater or equal to specified value. Table must be in descending order. |
Return
Type | Description |
---|---|
Number | Returns relative position of in cell-range for given value or #NA if no match is found. |
Examples
| |A|B| ||---|---|---| |1|2|3| |2|8|4| |3|1|3|
Formula | Result | Comment |
---|---|---|
| 2 | The index of the cell with the searched value is returned. |
| 1 | The index of the cell with the searched value is returned. |