This article explains how to use the HLOOKUP function
FSHLOOKUP (value, datasheet, row_index, [range_lookup])
value
- The value to look for in the first row of a datasheet.datasheet
- The table from which to retrieve a value.row_index
- The row in the datasheet from which to retrieve a value.range_lookup
- [optional] 0 = exact match (default). 1 = approximate match.range_lookup_higher_bound
- [optional] 0 = return lower value (default). 1 = return higher valueLookup the exact value of Question A
in row 1 of Datasheet A
and retrieve the value from the 2nd row (row numbering starts at 0 - zero):
FSHLOOKUP(QA, DA, 1, 1)
OR
Lookup the value 180
in row 1 of Datasheet B
and retrieve the value from the 3rd row:
FSHLOOKUP(180, DB, 2, 2)
A1:B22
), the value of the datasheet needs to be just the reference to that datasheet (e.g., formulascript>DA
).Learn more about hlookup in one of the following articles