Sample Data
This sheet shows a simple project task list with team members, their tasks, and current status.
| Cell | Value |
|---|---|
| A1 | Name |
| B1 | Task |
| C1 | Status |
| A2 | Alice |
| B2 | Design |
| C2 | Done |
| A3 | Bob |
| B3 | Development |
| C3 | In Progress |
| A4 | Carol |
| B4 | Testing |
| C4 | Pending |
This sheet shows a simple project task list with team members, their tasks, and current status.
| Cell | Value |
|---|---|
| A1 | Name |
| B1 | Task |
| C1 | Status |
| A2 | Alice |
| B2 | Design |
| C2 | Done |
| A3 | Bob |
| B3 | Development |
| C3 | In Progress |
| A4 | Carol |
| B4 | Testing |
| C4 | Pending |
=COUNTIF(C2:C4, "Done")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.
A B C D 1 | Name | Task | Status | Done Count | 2 | Alice | Design | Done | 1 | 3 | Bob | Development | In Progress | | 4 | Carol | Testing | Pending | |