Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed:
=WEEKDAY(A2,2)>5Edit the grid or formula, then run it through a real spreadsheet engine — no signup.
Sample data — click any cell to edit
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.
Wrap with AND and ISNUMBER: =AND(ISNUMBER(A2),WEEKDAY(A2,2)>5) so only numeric date values trigger the highlight and text or empty cells are ignored.
Select the full row range, then in the formula anchor the column reference: =WEEKDAY($A2,2)>5. The $ before A keeps the column fixed while the row evaluates per row.
Use =WEEKDAY(A2,2)=6 for Saturday-only and =WEEKDAY(A2,2)=7 for Sunday-only. Create two separate rules if you want distinct colors.
Combine with MATCH: =AND(WEEKDAY(A2,2)>5,ISNA(MATCH(A2,Holidays,0))) where Holidays is a named range listing your holiday dates. The cell highlights only if it is a weekend AND not in the Holidays list.
Yes — Google Sheets supports WEEKDAY identically. Go to Format → Conditional formatting → Custom formula and paste =WEEKDAY(A2,2)>5.
No — WEEKDAY needs real date values. Convert text dates first with DATEVALUE: =WEEKDAY(DATEVALUE(A2),2)>5, or fix the source by selecting the column and Data → Text to Columns → Finish to coerce text dates to real dates.
Highlight duplicate cells automatically with Conditional Formatting using a COUNTIF rule — no formulas to copy manually.
How-toUse Conditional Formatting with a simple greater-than rule to automatically color cells that exceed a threshold value.
How-toColor the maximum value in a range automatically using a Conditional Formatting rule based on the MAX function.
How-toColor the minimum value in a range using a Conditional Formatting rule built on the MIN function.
How-toUse conditional formatting with ISBLANK to automatically highlight empty cells in your spreadsheet for easy visual identification.
How-toUse conditional formatting with SEARCH or ISNUMBER(SEARCH()) to highlight any cell containing a specific word or phrase automatically.
Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed: