Bird
0
0
PCB Designbi_tool~10 mins

Ground plane on bottom layer in PCB Design - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

PCB layer data showing copper area and purpose for each layer.

CellValue
A1Layer
B1Copper Area (cm²)
C1Purpose
A2Top
B250
C2Signal routing
A3Bottom
B3100
C3Ground plane
A4Inner 1
B440
C4Power plane
A5Inner 2
B540
C5Signal routing
Formula Trace
SUMIF(C2:C5, "Ground plane", B2:B5)
Step 1: Check each cell in C2:C5 for 'Ground plane'
Step 2: Select corresponding B cells where condition is TRUE
Step 3: Sum selected values: 100
Cell Reference Map
    A       B       C
1 | Layer | Copper Area (cm²) | Purpose    
2 | Top   | 50     | Signal routing    
3 | Bottom| 100    | Ground plane <--
4 | Inner 1| 40     | Power plane     
5 | Inner 2| 40     | Signal routing    
The formula checks the Purpose column (C2:C5) for 'Ground plane' and sums the Copper Area (B2:B5) where the condition is true.
Result
    A       B       C           D
1 | Layer | Copper Area (cm²) | Purpose    | Result
2 | Top   | 50     | Signal routing    |      
3 | Bottom| 100    | Ground plane | 100
4 | Inner 1| 40     | Power plane     |      
5 | Inner 2| 40     | Signal routing    |      
The result 100 appears next to the Bottom layer row, showing total copper area for ground plane layers.
Sheet Trace Quiz - 3 Questions
Test your understanding
Which layer is identified as the ground plane in the data?
ATop
BBottom
CInner 1
DInner 2
Key Result
SUMIF(range_condition, condition, range_sum) sums values in range_sum where range_condition matches condition.