How do I use VLOOKUP with Multiple Criteria in Google Sheets?

VLOOKUP with Multiple Criteria in Google Sheets can be used by using the ARRAYFORMULA function, which allows multiple criteria to be defined within a single formula. This method allows for multiple criteria to be specified in the same formula, rather than having to create a separate formula for each criteria. The syntax for using ARRAYFORMULA is similar to that of the VLOOKUP function, but with additional parameters that define the criteria for the data being looked up. By using this method, you can create a more complex search that will retrieve multiple data points with a single formula.


Often you may want to use VLOOKUP in Google Sheets to look up values based on multiple criteria.

For example, suppose we have the following two datasets and you would like to use VLOOKUP in the right dataset to return the value in the Points column that matches both the value in the Team column and the Position column in the left dataset:

The following step-by-step example shows how to do so.

Step 1: Create a Helper Column

Before we can perform the VLOOKUP, we must first create a helper column in the first dataset that joins together the values in the Team and Points columns.

We’ll type the following formula into cell A2:

=B2&C2

We’ll then drag and fill this formula down to each remaining cell in column A:

Column A now contains a concatenation of the Team and Position values.

We will use this new column in our VLOOKUP formula in the next step.

Step 2: Use VLOOKUP with Multiple Criteria

Next, we can type the following formula into cell I2:

=VLOOKUP(F2&G2, $A$2:$D$13, 4, FALSE)

We’ll then drag and fill this formula down to each remaining cell in column I:

Google Sheets VLOOKUP with multiple criteria

Notice that the points value for each player in the right dataset matches the points value for the corresponding player in the left dataset.

We have successfully used a VLOOKUP with multiple criteria.

The following tutorials explain how to perform other common operations in Google Sheets:

x