0
0
Google Sheetsspreadsheet~10 mins

Why advanced rules highlight patterns in Google Sheets - Formula Trace Breakdown

Choose your learning style9 modes available
Sample Data

This data shows sales numbers in column A. Column B will show if the sales number is above 150 using an advanced conditional formatting rule.

CellValue
A1Sales
A2100
A3150
A4200
A5120
B1Highlight
B2
B3
B4
B5
Formula Trace
=A2>150
Step 1: A2
Step 2: 100 > 150
Cell Reference Map
    A       B
1 | Sales | Highlight |
2 |  100  |           |
3 |  150  |           |
4 |  200  |           |
5 |  120  |           |
The formula references cell A2 to check if the sales value is greater than 150.
Result
    A       B
1 | Sales | Highlight |
2 |  100  |  FALSE    |
3 |  150  |  FALSE    |
4 |  200  |  TRUE     |
5 |  120  |  FALSE    |
The formula applied down column B shows TRUE only for sales values above 150, highlighting the pattern of higher sales.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula =A2>150 check?
AIf the sales value in A2 equals 150
BIf the sales value in A2 is less than 150
CIf the sales value in A2 is greater than 150
DIf the sales value in A2 is empty
Key Result
A conditional formula compares each cell value to a threshold to highlight values above that threshold.