Skip to content

How to highlight the lowest value in Excel and Google Sheets

Topic:Conditional formatting
Excel & Google Sheets
=A1=MIN($A$1:$A$100)

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

Step by step

  1. 1Select the range you want to evaluate, e.g. A1:A100.
  2. 2Open Conditional Formatting, then New Rule, then "Use a formula to determine which cells to format" in Excel — or Format, Conditional formatting, "Custom formula is" in Google Sheets.
  3. 3Enter =A1=MIN($A$1:$A$100). Note the mixed reference: the tested cell (A1) is relative, the MIN range is locked with $.
  4. 4Choose a fill colour and apply — the single smallest value in the range is highlighted and updates live as data changes.

Tips

Working on a sheet you inherited? Run the Auditor on the whole file first — it flags every #REF!, #N/A, broken column pattern, and inconsistent formula in seconds, free, no signup.

Frequently asked

What formula highlights the lowest value?

In a Conditional Formatting custom-formula rule, use =A1=MIN($A$1:$A$100). The tested cell is relative and the MIN range is absolute with $.

How do I stop blank cells being treated as the lowest?

Blanks evaluate as 0. Exclude them with =AND(A1<>"",A1=MIN($A$1:$A$100)) so only real numbers are considered.

How do I highlight the lowest 3 values, not just one?

Use SMALL: the custom formula =A1<=SMALL($A$1:$A$100,3) highlights the three smallest values.

Is this different in Excel and Google Sheets?

The custom formula is identical. Only the menu path differs — Conditional Formatting, New Rule in Excel; Format, Conditional formatting in Google Sheets.

More on Conditional formatting

See all →

Formulas used

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: