0
0
Solidworksbi_tool~10 mins

Smart dimension tool in Solidworks - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

Sample dimensions of a simple mechanical part: line lengths, circle diameters, and angles.

CellValue
A1Line Length
A250
A375
B1Circle Diameter
B230
B345
C1Angle
C290
C345
Formula Trace
MAX(A2:A3) + MIN(B2:B3) + AVERAGE(C2:C3)
Step 1: MAX(A2:A3)
Step 2: MIN(B2:B3)
Step 3: AVERAGE(C2:C3)
Step 4: 75 + 30 + 67.5
Cell Reference Map
     A      B      C
  +------+------+------+
1 | Line | Circle| Angle|
  +------+------+------+
2 |  50  |  30  |  90  |
  +------+------+------+
3 |  75  |  45  |  45  |
  +------+------+------+
The formula uses cells A2, A3 for line lengths; B2, B3 for circle diameters; and C2, C3 for angles.
Result
     A      B      C      D
  +------+------+------+-------+
1 | Line | Circle| Angle| Result|
  +------+------+------+-------+
2 |  50  |  30  |  90  |       |
  +------+------+------+-------+
3 |  75  |  45  |  45  | 172.5 |
  +------+------+------+-------+
The final result 172.5 is shown in cell D3, representing the sum of max line length, min circle diameter, and average angle.
Sheet Trace Quiz - 3 Questions
Test your understanding
What is the maximum value found in cells A2 and A3?
A30
B50
C75
D90
Key Result
Combines MAX, MIN, and AVERAGE functions on different ranges and sums their results.