📋 GS Single Color Formatting Guide
📩 1. Formula Name + Syntax
Feature: Single Color Formatting (part of Conditional Formatting)
Navigation: Format → Conditional formatting → Single color
Optional Formula Rule Syntax:
=A1>50
or
=ISBLANK(A1)
📩 2. What it does
Applies one consistent color format to cells that meet a specified condition or rule.
📄3. Use Case / Scenario
You want to highlight all students who scored above 90 in green, to easily identify top performers. With “Single Color” formatting, you can color only those cells that meet your condition without affecting the rest.
🧪4. Interactive Example
Suppose you have this data in range B2:B6:
Name | Score --------|------- Alice | 85 Bob | 95 Charlie | 78 David | 91 Eve | 67
Steps:
- Select range
B2:B6 - Go to
Format → Conditional formatting - In “Single color” tab, under Format cells if: choose
Greater than→ enter90 - Choose a green fill
- Click “Done”
Result: Bob and David’s scores are highlighted in green.
🛠️ 5. Real-Life Applications
- Highlight top-selling products by revenue.
- Mark employees who exceeded targets.
- Show expenses above budget limits.
- Flag completed vs. pending tasks.
- Color overdue dates in a deadline tracker.
⚠️6. Common Errors + Fixes
- Wrong cells highlighted: Often caused by incorrect relative references. Fix: Use
=$B2>90if working across a row. - Formatting not visible: Cell format might already have a manual color. Fix: Clear formatting first.
- Formula mismatch: E.g., using
=B2>90on a range that starts from B3. Fix: Match the cell references exactly.
🧠 7. Bonus Tips
- Use
=ISBLANK(A1)to mark empty fields. - Combine with dropdowns to highlight “High”, “Medium”, “Low” status levels.
- Use
Custom formula isto apply logic like=AND(A1>50, A1<80). - Try grayscale for professional formatting in reports.
- You can apply text color, bold, italics, and more – not just fill color!