Bird
0
0
PCB Designbi_tool~10 mins

Manufacturing file review in PCB Design - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table lists manufacturing files for a PCB project, showing file names, types, review status, and error counts.

CellValue
A1File Name
B1File Type
C1Status
D1Errors
A2board_top.gbr
B2Gerber
C2Checked
D20
A3board_bottom.gbr
B3Gerber
C3Checked
D31
A4drill_file.drl
B4Drill
C4Pending
D40
A5assembly_instructions.pdf
B5Document
C5Checked
D50
Formula Trace
=COUNTIF(C2:C5, "Checked")
Step 1: C2:C5 values = ["Checked", "Checked", "Pending", "Checked"]
Step 2: Check each cell if value equals "Checked"
Step 3: Count TRUE values
Cell Reference Map
    A               B           C           D
1 | File Name      | File Type | Status    | Errors
2 | board_top.gbr | Gerber    | Checked   | 0
3 | board_bottom.gbr | Gerber  | Checked   | 1
4 | drill_file.drl | Drill     | Pending   | 0
5 | assembly_instructions.pdf | Document | Checked | 0

Formula references cells C2 to C5 for Status values.
The formula counts how many files have the status 'Checked' in the Status column (C2:C5).
Result
    A               B           C           D
1 | File Name      | File Type | Status    | Errors
2 | board_top.gbr | Gerber    | Checked   | 0
3 | board_bottom.gbr | Gerber  | Checked   | 1
4 | drill_file.drl | Drill     | Pending   | 0
5 | assembly_instructions.pdf | Document | Checked | 0

Result cell (e.g., E1): 3
The formula result is 3, showing three files have been reviewed and marked as 'Checked'.
Sheet Trace Quiz - 3 Questions
Test your understanding
How many files have the status 'Checked' according to the formula?
A3
B2
C4
D1
Key Result
COUNTIF(range, criteria) counts how many cells in the range meet the criteria.