Coupler.io Blog

Excel VLOOKUP For Multiple Criteria

Excel VLOOKUP For Multiple Criteria

The VLOOKUP function looks up only one value. And what if you want to return a result that matches multiple criteria? Check out the following workaround.

How to VLOOKUP for multiple criteria

We imported a dataset from Google Sheets to Excel using Coupler.io, a solution for automatic data exports from multiple apps and sources. Read more about Microsoft Excel integrations for data export on a schedule.

Our purpose is to look up the first name of a user by the following criteria:

You can’t specify more than one lookup value in a VLOOKUP formula, so we’ll need to use a workaround, which consists of two steps:

Step1: Create a column with unique lookup values made of two lookup criteria

=B1:B100&C1:C1000&D1:D100

This formula will merge values from columns B, C, and D in the specified array.

Step2: VLOOKUP formula for multiple values

Now we can use a VLOOKUP formula, which will contain multiple lookup criteria merged into one lookup value:

=VLOOKUP((J3&J4&J5),A2:G101,6,FALSE)
Exit mobile version