Google Sheets: Highlight Multiple Tables on the Same Sheet

Published on

If you’ve used tables in Google Sheets (via Insert > Pre-built tables or right-click > Convert to table), you may have noticed that highlighting one table doesn’t work the way you’d expect when there are multiple tables on the same sheet.

Why? Because conditional formatting in Google Sheets doesn’t support structured table references. You can’t apply a rule using the table name, and if you select a full column range (like A1:C), the formatting might spill over into other tables in that area.

So when you try to highlight multiple tables on the same sheet in Google Sheets, things get messy. Luckily, there’s a clean workaround.

Real-Life Scenario: Team Reports in a Single Sheet

Imagine you’re managing a small business with three teams: Sales, Support, and Marketing.

You collect each team’s monthly data in separate blocks on the same sheet:

Sales Table (A1:C4)

NameTargetAchieved
Alice100110
Diya9085

Support Table (A8:C11)

NameTickets HandledResolution %
Zara5092%
Dave4595%

Marketing Table (A15:C18)

NameCampaignsLeads
Saanvi5300
Frank4250

Each table starts at a different spot (A1, A8, A15). You want to:

  • Apply unique highlight rules to each table
  • Ensure the formatting adjusts when rows are added
  • Avoid rules from spilling into other tables

The Problem with Regular Formatting Rules

If you apply a conditional format to a fixed range like A1:C4, it won’t include new rows when the table grows.
If you apply the rule to A1:C, it will extend down through all rows in those columns — potentially overlapping with other tables on the same sheet.

So what’s the solution?

How to Highlight Multiple Tables on the Same Sheet in Google Sheets

We’ll use helper columns next to each table to control the formatting — no overlap, no hassle.

1. Highlight Achievers in the Sales Table

Let’s highlight names where the Achieved value is greater than or equal to Target.

We’ll use column E as a helper column for the Sales table.

In cell E3, enter:

=ArrayFormula((Sales[Achieved]>=Sales[Target])*(Sales[Target]>0))

This returns 1 for rows where targets are met. The best part? As the table grows, the formula expands automatically.

Highlighted rows in the Sales table where the Achieved value meets or exceeds the Target in Google Sheets

Now apply the conditional format:

  1. Select range A3:C
  2. Go to Format > Conditional formatting
  3. Under “Custom formula is”, enter
    =$E3=1
  4. Choose a highlight color
  5. Click Done

Only rows in the Sales table will be highlighted — no overlap.

2. Highlight High Resolutions in the Support Table

Now let’s highlight rows in the Support table where resolution percentage is above 90%.

Use column F as the helper column.

In cell F10, enter:

=ArrayFormula(Support[Resolution %]>90%)
Conditional formatting applied to the Support table in Google Sheets to highlight resolution rates above 90%

Then:

  1. Select range A10:C
  2. Go to Format > Conditional formatting
  3. Click “Add another rule”
  4. Set rule type to Custom formula is
  5. Enter: =$F10=TRUE
  6. Pick a different highlight color
  7. Click Done

Now only the Support table is affected.

3. Highlight Other Tables As Needed

You can repeat the same technique for the Marketing table or any additional blocks. Just use a different helper column and adjust the row references.

This method works perfectly to highlight multiple tables on the same sheet in Google Sheets, even as data grows or changes.

Why This Works

  • Helper columns isolate logic to each table
  • Array formulas grow with the table
  • Custom formulas let you apply precise rules to the right rows
  • No overlapping or conflicting highlights

Resources

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Expert Prashanth KV is a Diamond Product Expert in Google Sheets, officially recognized by Google for his contributions to the Docs Editors Help Community and featured in the Google Product Experts Directory. Explore his blog to learn advanced formulas, automation tips, and problem-solving techniques to elevate your spreadsheet skills.

Top Discussions

More like this

Pivot Table Formatting, Output & Special Behavior in Google Sheets

Pivot Tables in Google Sheets are powerful—but they can get tricky once you move...

Pivot Table Calculations & Advanced Metrics in Google Sheets

When it comes to built-in tools for data analysis and visualization in Google Sheets,...

Google Sheets Pivot Table Tutorial: Basics, Setup, and Date Grouping

The easiest way to summarize, analyze, and report data in Google Sheets is by...

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.