0
0
Google Sheetsspreadsheet~10 mins

Why Google Sheets is essential for collaboration - 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
C2In Progress
A3Bob
B3Development
C3Not Started
A4Carol
B4Testing
C4Completed
Formula Trace
=COUNTIF(C2:C4, "Completed")
Step 1: C2:C4 values = ["In Progress", "Not Started", "Completed"]
Step 2: COUNTIF(range, "Completed") counts how many cells equal "Completed"
Cell Reference Map
    A       B           C
1 | Name  | Task      | Status     |
2 | Alice | Design    | In Progress|
3 | Bob   | Development| Not Started|
4 | Carol | Testing   | Completed  |

Formula references cells C2, C3, C4 for status values.
The formula uses the status column cells C2 to C4 to count how many tasks are completed.
Result
    A       B           C
1 | Name  | Task      | Status     |
2 | Alice | Design    | In Progress|
3 | Bob   | Development| Not Started|
4 | Carol | Testing   | Completed  |
5 |       |           | 1          |

Cell C5 shows the result of the formula: 1 task completed.
The formula result '1' appears in cell C5, showing one completed task in the list.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula =COUNTIF(C2:C4, "Completed") count?
ANumber of tasks marked as Completed
BNumber of tasks marked as In Progress
CTotal number of tasks
DNumber of team members
Key Result
COUNTIF(range, criteria) counts how many cells in the range meet the criteria.