Skip to main content

VLOOKUP

Searches for a value in the first column of a table array and returns a value in the same row from a specified column.

CategoryLookup
SyntaxVLOOKUP(lookup_value, table_array, col_index, [range_lookup])

Parameters

ParameterRequiredDescription
lookup_valueRequiredThe value to search for in the first column of the table array.
table_arrayRequiredThe range of cells that contains the data (e.g., A1:C10 or $Table[A1:C10]).
col_indexRequiredThe column number in the table_array from which the matching value should be returned.
range_lookupOptional[Optional] TRUE (default) for approximate match (data must be sorted). FALSE for exact match.

Example

// Look up beam depth from a table in Sheet2
VLOOKUP("W14x22", Sheet2!A1:D50, 3, FALSE)

Auto-generated from the EngCanvas function registry.