Highlight VLOOKUP Results with Conditional Formatting in Google Sheets

Published on

You can highlight VLOOKUP results in Google Sheets mainly in two ways, which we will explore below:

  1. Highlight the lookup result within the lookup table.
  2. Highlight values in a list if they are present in the lookup table and meet a condition.

Option 1: Highlight VLOOKUP Results within the Lookup Table

In the following example, I want to look up the name “David” in cell A1 in the lookup table (B2:D7) and highlight the marks in the third column.

When I change the name in cell A1 to another name, the highlighting should be updated accordingly.

Highlighting VLOOKUP Results within the Lookup Table

How do we highlight VLOOKUP results in Google Sheets as described above?

Since VLOOKUP doesn’t work directly with Conditional Formatting in this way, we need to find the cell address of the VLOOKUP result and use that to match each cell in the table for conditional formatting.

Step 1: Find the Row Number of the Lookup Value

We can use the MATCH function for this:

=MATCH($A$1, $B$2:$B$7, FALSE)+ROW($B$2)-1

Syntax:

MATCH(search_key, range, [search_type])

Where:

  • search_key: $A$1 (lookup value)
  • range: $B$2:$B$7 (range to lookup)
  • search_type: FALSE (exact match)

The lookup range starts from the second row. To convert the relative position of the search key in the range to the actual row number, we add ROW($B$2)-1. Adding 1 directly won’t adjust the range if you move your table in the future.

Step 2: Find the Column Number of the VLOOKUP Result

To get the column number for column D:

=COLUMN($D$2)

Step 3: Find the VLOOKUP Result Cell Address

We can use the ADDRESS function to get the VLOOKUP result cell reference as a string by using the row and column numbers obtained above:

=ADDRESS(MATCH($A$1, $B$2:$B$7, FALSE)+ROW($B$2)-1, COLUMN($D$2))

Next, we can use this cell reference to highlight the VLOOKUP result.

Step 4: Highlight VLOOKUP Results within the Lookup Table

Match each cell reference in the lookup table with the VLOOKUP result address (step 3 output) within Conditional Formatting. Here’s how:

  1. Get the Address of the First Cell in the Range:
    =CELL("address", B2)This is just for your reference.
  2. Match it with the VLOOKUP Result Cell Address:
    =CELL("address", B2)=ADDRESS(MATCH($A$1, $B$2:$B$7, FALSE)+ROW($B$2)-1, COLUMN($D$2))This formula will be used in Conditional Formatting.
  3. Apply Conditional Formatting:
    • Select the lookup table range B2:D7.
    • Click Format > Conditional formatting.
    • Under Format rules, select Custom formula is.
    • Copy and paste the above formula into the field.
    • Choose a formatting style under Formatting style.
    • Click Done.

This approach dynamically updates the formatting when you move the table by inserting rows or columns, as it uses dynamic references.

Option 2: Conditional Formatting for Lookup Values Present in Another Table

Conditional Formatting for Lookup Values Present in Another Table

This scenario involves search keys in column A of Sheet1. We want to look up these values in a table in Sheet2 and highlight the values in column A (Sheet1) if they match a condition.

For example, consider the table in A1:C6 in Sheet2:

DateShippedReturns
01/07/202450050
02/07/202460030
03/07/202455020
04/07/202470040
05/07/202465035

In Sheet1, we have the following dates in A1:A, where A1 contains a field label:

Date
01/07/2024
05/07/2024
10/07/2024

We want to highlight this list if the shipped quantities for these dates in Sheet2 are greater than 600.

The following VLOOKUP formula will look up the search key in Sheet1!A2 in Sheet2!A1:C6 and return the shipped value on that particular date:

=VLOOKUP(A2, Sheet2!$A$1:$C$6, 2, FALSE)

To test whether the value is greater than 600, use:

=VLOOKUP(A2, Sheet2!$A$1:$C$6, 2, FALSE)>600

However, this won’t work directly in Conditional Formatting. When the custom rule contains a cell or range reference in a different table, you should indirectly refer to them as follows:

=VLOOKUP(A2, INDIRECT("Sheet2!A1:C6"), 2, FALSE)>600

How to apply this rule:

  1. Select the range A2:A or up to the row from A2 in Sheet1.
  2. Click Format > Conditional formatting.
  3. Select Custom formula is under Format rules.
  4. Copy and paste the above formula in the field immediately below.
  5. Click Done.

This is another option to highlight VLOOKUP results in Google Sheets. Here, we are highlighting the search keys if the VLOOKUP result meets a certain criterion.

Additional Tip

You can use the FILTER function as an alternative to the VLOOKUP method described above. Replace the highlighting rule with the following FILTER formula:

=FILTER(INDIRECT("Sheet2!B2:B6"), INDIRECT("Sheet2!A2:A6")=A2)>600

Resources

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Hierarchical Numbering Sequences in Excel

Creating hierarchical numbering sequences in an Excel spreadsheet can significantly improve the way you...

How to Easily Repeat a Sequence of Numbers in Excel

Excel offers multiple ways to accomplish tasks, and the simplicity of each approach depends...

Create a Sequence of Dates at Every Nth Row in Excel (Dynamic Array)

Would you like to create a sequence of dates in every nth row in...

XMATCH Row by Row: Finding Values Across a Range in Google Sheets

Using the BYROW function with XMATCH in Google Sheets allows us to match values...

More like this

XMATCH Row by Row: Finding Values Across a Range in Google Sheets

Using the BYROW function with XMATCH in Google Sheets allows us to match values...

Limit Formula Expansion to a Specific Row in Google Sheets

In this tutorial, I’ll explain how to limit the expansion of an array formula...

3-D Referencing Structured Data Tables in Google Sheets

When you have several tables within a single sheet—not across multiple sheets in a...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.