Other Extension Functions
VLOOKUP(value, search_column, result_column)
Argument Name
Description
Formula Examples
/* Search for the record in sheet "s1" whose "ProductId" column value matches
the ProductId value of the current record, and returns the "ListPrice"
column value of that record */
VLOOKUP(CASESAFEID(ProductId), [s1].[#ProductId], [s1].[#ListPrice])
/* Searches for the record in sheet "s1" whose "Name" column value matches the
concatenation of the "Name" and "Type" column values of the current record,
and returns the value of the "Amount" column of the record */
VLOOKUP([@Name] + " - " + [@Type], [s1].[#Name], [s1].[#Amount])VLOOKUP Function Limitations and Notices
Last updated