Bird
0
0
PCB Designbi_tool~10 mins

Minimum trace width and spacing in PCB Design - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows different PCB trace types with their current ratings, minimum trace widths, and minimum spacing requirements. The selected trace type is in B5.

CellValue
A1Trace Type
B1Current (A)
C1Min Width (mil)
D1Min Spacing (mil)
A2Signal
B21
C26
D26
A3Power
B35
C320
D310
A4Ground
B43
C412
D48
A5Selected Trace
B5Power
C5
D5
E5Formula Result
F5
Formula Trace
=VLOOKUP(B5, A2:D4, 3, FALSE)
Step 1: VLOOKUP("Power", A2:D4, 3, FALSE)
Cell Reference Map
     A        B        C        D        E        F
1 |Trace Type|Current  |Min Width|Min Spacing|        |       
2 |Signal    |1        |6       |6         |        |       
3 |Power     |5        |20      |10        |        |       
4 |Ground    |3        |12      |8         |        |       
5 |Selected Trace|Power    |        |          |Formula Result|       
The formula looks up the value in B5 ('Power') in the first column of the range A2:D4 to find the minimum trace width in the 3rd column.
Result
     A        B        C        D        E        F
1 |Trace Type|Current  |Min Width|Min Spacing|        |       
2 |Signal    |1        |6       |6         |        |       
3 |Power     |5        |20      |10        |        |       
4 |Ground    |3        |12      |8         |        |       
5 |Selected Trace|Power    |        |          |Formula Result|20     
The formula result 20 is shown in cell F5, representing the minimum trace width in mils for the selected 'Power' trace type.
Sheet Trace Quiz - 3 Questions
Test your understanding
What value does the formula return for the selected trace type 'Power'?
A10
B20
C5
D6
Key Result
VLOOKUP looks for a value in the first column of a range and returns a value from a specified column in the same row.