public final class Match
extends java.lang.Object
 Syntax:
 MATCH(lookup_value, lookup_array, match_type)
Returns a 1-based index specifying at what position in the lookup_array the specified lookup_value is found.
Specific matching behaviour can be modified with the optional match_type parameter.
| Value | Matching Behaviour | 
|---|---|
| 1 | (default) find the largest value that is less than or equal to lookup_value. The lookup_array must be in ascending order*. | 
| 0 | find the first value that is exactly equal to lookup_value. The lookup_array can be in any order. | 
| -1 | find the smallest value that is greater than or equal to lookup_value. The lookup_array must be in descending order*. | 
| Constructor and Description | 
|---|
| Match() | 
| Modifier and Type | Method and Description | 
|---|---|
| ValueEval | evaluate(int srcRowIndex,
        int srcColumnIndex,
        ValueEval arg0,
        ValueEval arg1) | 
| ValueEval | evaluate(int srcRowIndex,
        int srcColumnIndex,
        ValueEval arg0,
        ValueEval arg1,
        ValueEval arg2) | 
| ValueEval | evaluate(ValueEval[] args,
        int srcRowIndex,
        int srcColumnIndex) | 
public ValueEval evaluate(int srcRowIndex, int srcColumnIndex, ValueEval arg0, ValueEval arg1)
Function2Argpublic ValueEval evaluate(int srcRowIndex, int srcColumnIndex, ValueEval arg0, ValueEval arg1, ValueEval arg2)
Function3Argpublic final ValueEval evaluate(ValueEval[] args, int srcRowIndex, int srcColumnIndex)
evaluate in interface Functionargs - the evaluated function arguments.  Empty values are represented with
 BlankEval or MissingArgEval, never null.srcRowIndex - row index of the cell containing the formula under evaluationsrcColumnIndex - column index of the cell containing the formula under evaluationErrorEval, never null.
 Note - Excel uses the error code #NUM! instead of IEEE NaN, so when
 numeric functions evaluate to Double.NaN be sure to translate the result to ErrorEval.NUM_ERROR.Copyright 2021 The Apache Software Foundation or its licensors, as applicable.