0
0
Solidworksbi_tool~10 mins

Line and centerline tools in Solidworks - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows lengths of lines and centerlines used in a SolidWorks drawing.

CellValue
A1Length
B1Type
A250
B2Line
A330
B3Centerline
A420
B4Line
A540
B5Centerline
Formula Trace
=SUMIF(B2:B5, "Line", A2:A5)
Step 1: Check B2:B5 for cells equal to "Line"
Step 2: Select corresponding A2:A5 values where condition is TRUE
Step 3: Sum selected values: 50 + 20
Cell Reference Map
    A     B
1 Length  Type
2  50    Line  <-- included
3  30    Centerline
4  20    Line  <-- included
5  40    Centerline
The formula checks cells B2 to B5 for "Line" and sums corresponding A2 to A5 values.
Result
    A     B       C
1 Length  Type    Total Line Length
2  50    Line        70
3  30    Centerline
4  20    Line
5  40    Centerline
The result 70 is the sum of lengths where the type is "Line".
Sheet Trace Quiz - 3 Questions
Test your understanding
Which cells in column B are counted by the formula?
AB2 and B4
BB3 and B5
CB2, B3, B4, B5
DOnly B2
Key Result
SUMIF(range_to_check, condition, range_to_sum) sums values in range_to_sum where range_to_check meets condition.