 | BasicFormulasGetVLookup Method |
Function to generate a Vlookup as Excel function
Namespace: NanoXLSXAssembly: NanoXLSX (in NanoXLSX.dll) Version: 2.6.2+7f12a949130e0be1e987e553d2d08c083176cdca
Syntaxprivate static Cell GetVLookup(
Worksheet queryTarget,
Address address,
Object number,
Worksheet rangeTarget,
Range range,
int columnIndex,
bool exactMatch,
bool numericLookup
)
Parameters
- queryTarget Worksheet
- Target worksheet of the query argument. Can be null if on the same worksheet
- address Address
- In case of a reference lookup, query address of a cell as string
- number Object
- In case of a numeric lookup, number for the lookup
- rangeTarget Worksheet
- Target worksheet of the matrix. Can be null if on the same worksheet
- range Range
- Matrix of the lookup
- columnIndex Int32
- Column index of the target column within the range (1 based)
- exactMatch Boolean
- If true, an exact match is applied to the lookup
- numericLookup Boolean
- If true, the lookup is a numeric lookup, otherwise a reference lookup
Return Value
CellPrepared Cell object, ready to be added to a worksheet
ExceptionsException | Condition |
---|
FormatException | A format exception is thrown if the value or column index is invalid |
See Also