📊 Google Sheets dashboards & trackers examples

Conditional Formatting Workflow Examples in Google Sheets

Highlight overdue tasks, high values, duplicates, and status changes. This page gives a clear pattern, five practical examples and common mistakes to avoid.

Updated 2026-06-125 practical examplesCopy-ready formulas

Syntax or pattern

Highlight overdue tasks, high values, duplicates, and status changes.

Custom formula rules such as =$D2<TODAY()
✍️

5 practical examples

1

Build a task summary

Count open tasks for a tracker summary.

=COUNTIFS(Tasks!D:D, "Open")

Adjust the ranges, criteria and sheet names to match your workbook.

2

Create a completion rate

Calculate the share of checked items.

=COUNTIF(B2:B100, TRUE)/COUNTA(B2:B100)

Adjust the ranges, criteria and sheet names to match your workbook.

3

Show overdue items

List overdue unfinished tasks.

=FILTER(A2:E, D2:D<TODAY(), E2:E<>"Done")

Adjust the ranges, criteria and sheet names to match your workbook.

4

Summarize by status

Create a status count table for a dashboard.

=QUERY(A1:E, "select E, count(E) group by E", 1)

Adjust the ranges, criteria and sheet names to match your workbook.

5

Create a small trend chart

Display a monthly trend inside one cell.

=SPARKLINE(B2:M2)

Adjust the ranges, criteria and sheet names to match your workbook.

Common mistakes to avoid

  • Building dashboard formulas directly on messy raw data.
  • Not separating inputs, calculations and outputs.
  • Forgetting to protect formula ranges from manual edits.

FAQ

What is this Google Sheets page for?

This page gives copy-ready examples for conditional formatting workflow examples so you can understand the pattern and adapt it to real spreadsheet work.

Can I copy these formulas directly?

Yes. Use the copy buttons, then adjust sheet names, ranges, criteria and column references for your own file.

Why does my formula return an error?

The most common causes are mismatched ranges, missing quotes around text criteria, blank source data, or references that do not match your sheet layout.

💡 Useful resources

Here are some ideas for you

Optional resources that may help if you are learning Google Sheets, building trackers, creating dashboards or improving spreadsheet workflows.

  • 📘
    Google Sheets books

    Learn formulas, workflows and dashboards with structured examples.

    See ideas
  • 📊
    Spreadsheet dashboard books

    Improve how you design trackers, summaries and reporting sheets.

    See ideas
  • ⌨️
    Keyboard shortcut guides

    Build speed with navigation, editing and formatting shortcuts.

    See ideas
  • 🔢
    Numeric keypads

    Useful if you enter numbers often on a laptop or compact keyboard.

    See ideas
  • 🖥️
    External monitors

    Helpful for viewing data, formulas and dashboards side by side.

    See ideas
  • 📒
    Desk notebooks

    Sketch formulas, tracker layouts and reporting ideas before building.

    See ideas

Some links in this section may be affiliate links. Choose only what is useful for your own work.