Bird
0
0
PCB Designbi_tool~10 mins

Length matching for parallel buses in PCB Design - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows lengths of four parallel bus segments in millimeters. The goal is to find the maximum length and calculate how much shorter each segment is compared to the longest one to help with length matching.

CellValue
A1Bus Segment
B1Length (mm)
A2Segment 1
B250
A3Segment 2
B348
A4Segment 3
B452
A5Segment 4
B550
A6Max Length
B6
A7Length Difference
B7
Formula Trace
=MAX(B2:B5)
Step 1: MAX(50, 48, 52, 50)
Cell Reference Map
     A          B
  +-------+---------+
1 | Bus   | Length  |
  +-------+---------+
2 | Seg 1 |  50     |
3 | Seg 2 |  48     |
4 | Seg 3 |  52     | <-- MAX range includes this cell
5 | Seg 4 |  50     |
6 | Max   |         |
  +-------+---------+
The formula references cells B2 through B5 to find the maximum length among the bus segments.
Result
     A          B
  +-------+---------+
1 | Bus   | Length  |
  +-------+---------+
2 | Seg 1 |  50     |
3 | Seg 2 |  48     |
4 | Seg 3 |  52     |
5 | Seg 4 |  50     |
6 | Max   |  52     | <-- Result of MAX formula
  +-------+---------+
The maximum length of 52 mm is displayed in cell B6, showing the longest bus segment length.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula =MAX(B2:B5) calculate?
AThe average length of bus segments
BThe longest bus segment length
CThe shortest bus segment length
DThe total length of all bus segments
Key Result
MAX(range) returns the largest numeric value within the specified range.