Click or drag to resize
PicoXLSX

CellBasicFormulasVLookup(Object, CellRange, Int32, Boolean) Method

Function to generate a Vlookup as Excel function

Namespace: PicoXLSX
Assembly: PicoXLSX (in PicoXLSX.dll) Version: 3.4.5+6ab75fa9edd66571b0de8e574b48108101297ca1
Syntax
C#
public static Cell VLookup(
	Object number,
	CellRange range,
	int columnIndex,
	bool exactMatch
)

Parameters

number  Object
Numeric value for the lookup. Valid types are int, uint, long, ulong, float, double, byte, sbyte, decimal, short and ushort.
range  CellRange
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.

Return Value

Cell
Prepared Cell object, ready to be added to a worksheet.
See Also