0
0
Solidworksbi_tool~10 mins

CommandManager and toolbars in Solidworks - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows different SolidWorks features and their corresponding toolbars and CommandManager tabs.

CellValue
A1Feature
B1Toolbar
C1CommandManager Tab
A2Sketch
B2Sketch Toolbar
C2Sketch Tab
A3Features
B3Features Toolbar
C3Features Tab
A4Evaluate
B4Evaluate Toolbar
C4Evaluate Tab
A5Sheet Metal
B5Sheet Metal Toolbar
C5Sheet Metal Tab
Formula Trace
IF(B2="Sketch Toolbar", C2, "No Tab")
Step 1: B2="Sketch Toolbar"
Step 2: IF(TRUE, C2, "No Tab")
Cell Reference Map
    A           B               C
1 | Feature  | Toolbar       | CommandManager Tab
2 | Sketch   | Sketch Toolbar| Sketch Tab
3 | Features | Features Toolbar| Features Tab
4 | Evaluate | Evaluate Toolbar| Evaluate Tab
5 | Sheet Metal | Sheet Metal Toolbar | Sheet Metal Tab

Formula references B2 and C2 cells.
The formula checks the value in B2 and returns the corresponding tab name from C2 if the toolbar matches.
Result
    A           B               C               D
1 | Feature  | Toolbar       | CommandManager Tab | Result
2 | Sketch   | Sketch Toolbar| Sketch Tab        | Sketch Tab
3 | Features | Features Toolbar| Features Tab     | 
4 | Evaluate | Evaluate Toolbar| Evaluate Tab     | 
5 | Sheet Metal | Sheet Metal Toolbar | Sheet Metal Tab | 
The formula in column D checks if the toolbar in column B is 'Sketch Toolbar' and returns the matching CommandManager tab from column C. For row 2, it returns 'Sketch Tab'.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula return if B2 contains 'Sketch Toolbar'?
AFeatures Tab
BNo Tab
CSketch Tab
DEvaluate Tab
Key Result
IF(condition, value_if_true, value_if_false) returns one value based on a condition check.