0
0
Figmabi_tool~10 mins

Why real-time collaboration improves workflow in Figma - Formula Trace Breakdown

Choose your learning style9 modes available
Sample Data

This table shows tasks in a project with their current status, who is assigned, and comments. It represents a typical workflow in a team.

CellValue
A1Task
B1Status
C1Assigned To
D1Comments
A2Design Homepage
B2In Progress
C2Alice
D2Waiting for feedback
A3Write Content
B3Not Started
C3Bob
D3
A4Review SEO
B4Completed
C4Charlie
D4Approved by manager
Formula Trace
COUNTIF(B2:B4, "In Progress") + COUNTIF(B2:B4, "Not Started")
Step 1: COUNTIF(B2:B4, "In Progress")
Step 2: COUNTIF(B2:B4, "Not Started")
Step 3: 1 + 1
Cell Reference Map
    A           B             C           D
1 | Task      | Status      | Assigned To | Comments
2 | Design Homepage | In Progress | Alice      | Waiting for feedback
3 | Write Content   | Not Started | Bob        | 
4 | Review SEO      | Completed   | Charlie    | Approved by manager

Arrows: B2:B4 cells are referenced for status counts.
The formula looks at the Status column (cells B2 to B4) to count tasks by their current state.
Result
    A           B             C           D
1 | Task      | Status      | Assigned To | Comments
2 | Design Homepage | In Progress | Alice      | Waiting for feedback
3 | Write Content   | Not Started | Bob        | 
4 | Review SEO      | Completed   | Charlie    | Approved by manager

Result cell (E1): 2
The result '2' shows the number of tasks that are either in progress or not started, indicating active workflow items.
Sheet Trace Quiz - 3 Questions
Test your understanding
How many tasks are currently 'In Progress' according to the formula?
A2
B1
C0
D3
Key Result
COUNTIF(range, condition) counts cells matching condition; adding counts sums multiple conditions.