How to Clear Conditional Formatting in Excel

“clear conditional formatting in excel” comes up constantly, so this page leads with the exact answer, and only then explains the detail. Everything works in Excel on Windows and Mac and maps almost one-to-one to Google Sheets. Copy the answer above and get back to work, or read on to turn a one-off fix into something you never have to look up again.

Exact answer

In Excel: select the range, choose Home ▸ Conditional Formatting ▸ New Rule ▸ Use a formula to determine which cells to format, and enter a rule like =$B2>100 written for the top-left cell of the selection.

Annotated stepsExcel
1

Select the exact range to format, starting at the top-left cell.

2

Choose Home ▸ Conditional Formatting ▸ New Rule ▸ Use a formula to determine which cells to format.

3

Write the formula for the top-left cell: =$B2>100 colors whole rows where column B exceeds 100.

4

For a contains-text rule, use =ISNUMBER(SEARCH("urgent",$A2)).

5

Click Format, set the fill, and confirm with OK.

6

Open Manage Rules to check the Applies to range and rule order; tick Stop If True when a higher rule should win.

=$B2>100
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

Conditional formatting applies a fill, font or border automatically while a condition is true and removes it when it stops being true. The built-in presets cover simple cases; a formula rule handles everything else, including formatting a cell based on another cell. Excel evaluates the formula once per cell in the Applies to range, shifting relative references as it moves — so the $ anchors decide what each cell actually tests. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. For “clear conditional formatting in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected cells change, and only then apply the same setup to the full sheet. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That is what makes a workspace setting that makes a big sheet comfortable to navigate useful in real work: repeatable, auditable, and not dependent on memory or luck.

A worked example

Orders sit in A2:D10 with amounts in column B: B2 is 150, B3 is 80, B4 is 230. Select A2:D10, add the formula rule =$B2>100 and pick a green fill. Rows 2 and 4 turn green across all four columns; row 3 stays plain. $B locks the column while the row number stays relative, so every cell in a row tests its own row’s B value — B$2 would instead compare everything against row 2. A formula rule keeps status visible without manual recoloring: overdue rows, high amounts or matching text get marked the moment the data changes. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. If you take one thing from this page on “clear conditional formatting in excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.

Common mistakes

  • Writing $B$2 instead of $B2, so every row tests the same single cell.
  • Using B$2 for a row-wise rule — that locks the row, not the column.
  • Writing the formula for the wrong cell: it must evaluate for the top-left cell of the Applies to range.
  • Letting an earlier rule mask a later one instead of reordering in Manage Rules or using Stop If True.
  • Comparing text values with > and expecting numeric behavior.

Frequently asked questions

How do I format a cell based on another cell?

Use a formula rule that references the other cell: select C2:C20 and use =$B2="Done". The formatted range and the tested cell do not have to be the same.

How do I highlight cells that contain specific text?

Use =ISNUMBER(SEARCH("urgent",$A2)) as the rule formula. SEARCH ignores case; use FIND for a case-sensitive match.

What is the Google Sheets equivalent?

Format ▸ Conditional formatting ▸ Custom formula is. The formula works the same way, anchors included, and must start with =.