Bird
0
0
PCB Designbi_tool~10 mins

Checking unconnected copper in PCB Design - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data shows PCB nets with their pad counts and copper area in square millimeters. 'NC' nets have zero pads but some copper area, indicating possible unconnected copper.

CellValue
A1Net Name
B1Pad Count
C1Copper Area (mm2)
A2GND
B210
C250
A3VCC
B38
C340
A4NC1
B40
C45
A5NC2
B50
C53
A6SIGNAL1
B65
C620
Formula Trace
=FILTER(A2:A6, (B2:B6=0) * (C2:C6>0))
Step 1: B2:B6=0
Step 2: C2:C6>0
Step 3: (B2:B6=0) * (C2:C6>0)
Step 4: FILTER(A2:A6, [FALSE, FALSE, TRUE, TRUE, FALSE])
Cell Reference Map
     A       B       C
1  Net    Pad Ct  Copper
2  GND       10      50
3  VCC        8      40
4  NC1        0       5
5  NC2        0       3
6  SIGNAL1    5      20

References:
- B2:B6 for Pad Count
- C2:C6 for Copper Area
- A2:A6 for Net Names
The formula uses pad counts and copper area columns to find nets with zero pads but positive copper area, then returns their net names.
Result
     A       B       C
1  Net    Pad Ct  Copper
2  GND       10      50
3  VCC        8      40
4  NC1        0       5  <-- Unconnected copper
5  NC2        0       3  <-- Unconnected copper
6  SIGNAL1    5      20

Result: Filtered list shows NC1 and NC2 as unconnected copper nets.
The result highlights nets NC1 and NC2 as having copper but no pads, indicating unconnected copper areas on the PCB.
Sheet Trace Quiz - 3 Questions
Test your understanding
Which nets have zero pads according to the formula evaluation?
ANC1 and NC2
BGND and VCC
CSIGNAL1 only
DAll nets
Key Result
FILTER(range, (condition1) * (condition2)) returns items meeting both conditions