SS Lookup

VLOOKUP

Vertical Lookup

To pull in data from other sheets based on a "key" field (perhaps to create some sort of summary sheet) we can use something like this...

=IFERROR(VLOOKUP(A15, Sheet1!$A$1:$D$84, 3, FALSE),0)

The IFERROR enables us to return 0 if the lookup failsIn this example cell A15 on our current sheet holds the key to lookup on Sheet1Using $ symbold in front of the range of cells to scan makes it possible to drag the formula up/down in order to easily do lookups on multiple values.The range must include the cells likely to hold the key field and the cells likely to hold the return valueIn our example the 3 defines that the cell in the 3rd column on the same rows as the lookup key will be returned.FALSE specifies that an error is returned if the lookup would return more than one result.

HLOOKUP

Horizontal Lookup

XLOOKUP

INDEX & MATCH

Bibliography