Lookup & Reference
Searches for a value in the first column of a table and returns a value in the same row from another column. Vertical lookup.
=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])lookup_valueThe value to search for in the first column
table_arrayThe table range containing data
col_index_numColumn number in the table to return value from
range_lookup(boolean)TRUE for approximate match, FALSE for exact match
=VLOOKUP("John", A1:C10, 3, FALSE)Searches for "John" in column A and returns salary from column C
Result: Salary value
=VLOOKUP(B2, Products!A:D, 4, FALSE)Finds product price from another sheet
Result: Price from column 4
=VLOOKUP(A1, GradeTable, 2, TRUE)Approximate match for grade ranges
Result: Letter grade
Our AI can generate tailored formulas based on your specific needs
Generate Custom Formula