Bird
0
0
PCB Designbi_tool~10 mins

Net labels for connections in PCB Design - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows components with their pins and assigned net labels representing electrical connections.

CellValue
A1Component
B1Pin
C1Net Label
A2U1
B21
C2VCC
A3U1
B32
C3GND
A4R1
B41
C4VCC
A5R1
B52
C5OUT
A6C1
B61
C6OUT
A7C1
B72
C7GND
Formula Trace
COUNTIF(C2:C7, "VCC")
Step 1: Range C2:C7 values = ["VCC", "GND", "VCC", "OUT", "OUT", "GND"]
Step 2: COUNTIF over ["VCC", "GND", "VCC", "OUT", "OUT", "GND"] for "VCC"
Cell Reference Map
    A       B       C
1 Component Pin    Net Label
2 U1        1      VCC  <-- included
3 U1        2      GND  <-- included
4 R1        1      VCC  <-- included
5 R1        2      OUT  <-- included
6 C1        1      OUT  <-- included
7 C1        2      GND  <-- included
The formula references cells C2 through C7 to count occurrences of the net label 'VCC'.
Result
    A       B       C
1 Component Pin    Net Label
2 U1        1      VCC
3 U1        2      GND
4 R1        1      VCC
5 R1        2      OUT
6 C1        1      OUT
7 C1        2      GND

Result in D1: 2
The formula counts 2 occurrences of 'VCC' in the net labels from C2 to C7.
Sheet Trace Quiz - 3 Questions
Test your understanding
How many times does the net label 'VCC' appear in the range C2:C7?
A2
B3
C1
D4
Key Result
COUNTIF(range, criteria) counts how many cells in the range match the criteria.