Bird
0
0
PCB Designbi_tool~10 mins

Manufacturing constraints awareness in PCB Design - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows PCB components with their actual sizes and the maximum allowed sizes for manufacturing.

CellValue
A1Component
B1Size (mm)
C1Max Allowed Size (mm)
D1Status
A2Resistor
B23.2
C23.5
A3Capacitor
B34
C33.8
A4IC Chip
B410
C410
A5Connector
B512.5
C512
Formula Trace
=IF(B2<=C2, "OK", "Too Large")
Step 1: B2 <= C2
Step 2: TRUE
Step 3: IF(TRUE, "OK", "Too Large")
Cell Reference Map
    A       B       C       D
1 |Component|Size(mm)|MaxSize |Status
2 |Resistor |  3.2   |  3.5   |  ?  
3 |Capacitor|  4.0   |  3.8   |  ?  
4 |IC Chip  | 10.0   | 10.0   |  ?  
5 |Connector| 12.5   | 12.0   |  ?  
The formula in column D compares size in column B with max allowed size in column C for each component.
Result
    A       B       C       D
1 |Component|Size(mm)|MaxSize |Status
2 |Resistor |  3.2   |  3.5   |  OK 
3 |Capacitor|  4.0   |  3.8   |Too Large
4 |IC Chip  | 10.0   | 10.0   |  OK 
5 |Connector| 12.5   | 12.0   |Too Large
The Status column shows "OK" if the component size is within manufacturing limits, otherwise "Too Large".
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula check for each component?
AIf the component size is less than or equal to the max allowed size
BIf the component size is greater than the max allowed size
CIf the component size equals zero
DIf the max allowed size is less than the component size
Key Result
IF(actual_size <= max_allowed_size, "OK", "Too Large")