0
0
Google Sheetsspreadsheet~10 mins

Why collaboration is Sheets' superpower in Google Sheets - Formula Trace Breakdown

Choose your learning style9 modes available
Sample Data

This sheet shows a simple project task list with team members, their tasks, and current status.

CellValue
A1Name
B1Task
C1Status
A2Alice
B2Design
C2Done
A3Bob
B3Development
C3In Progress
A4Carol
B4Testing
C4Pending
Formula Trace
=COUNTIF(C2:C4, "Done")
Step 1: COUNTIF(C2:C4, "Done")
Cell Reference Map
    A       B           C
1 | Name  | Task      | Status   |
2 | Alice | Design    | Done     |
3 | Bob   | Development | In Progress |
4 | Carol | Testing   | Pending  |

Arrows: Formula looks at C2, C3, C4 for 'Done' count.
The formula references the Status column cells C2 to C4 to count how many tasks are marked 'Done'.
Result
    A       B           C       D
1 | Name  | Task      | Status   | Done Count |
2 | Alice | Design    | Done     | 1          |
3 | Bob   | Development | In Progress |          |
4 | Carol | Testing   | Pending  |           |
The formula result '1' appears in cell D2 showing one task is done. This helps the team see progress instantly.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula =COUNTIF(C2:C4, "Done") count?
ANumber of team members
BNumber of tasks marked as Done
CNumber of tasks in progress
DNumber of empty cells
Key Result
COUNTIF(range, criteria) counts how many cells in the range meet the criteria.