0
0
Solidworksbi_tool~15 mins

CommandManager and toolbars in Solidworks - Real Business Scenario

Choose your learning style9 modes available
Scenario Mode
👤 Your Role: You are a product engineer at a manufacturing company using SolidWorks.
📋 Request: Your manager wants a report showing how frequently different CommandManager tabs and toolbars are used by the design team over the last month.
📊 Data: You have usage logs that record each time a user clicks a CommandManager tab or toolbar button, including the user name, date, and the name of the tab or toolbar used.
🎯 Deliverable: Create a dashboard that shows total clicks per CommandManager tab and toolbar, trends over the month, and highlights the most and least used features.
Progress0 / 6 steps
Sample Data
UserDateFeature TypeFeature NameClicks
Alice2024-05-01CommandManager TabFeatures5
Bob2024-05-01ToolbarSketch Tools3
Alice2024-05-02CommandManager TabEvaluate2
Charlie2024-05-02ToolbarView Tools4
Bob2024-05-03CommandManager TabFeatures6
Alice2024-05-03ToolbarSketch Tools7
Charlie2024-05-04CommandManager TabSurfaces1
Bob2024-05-04ToolbarView Tools5
Alice2024-05-05CommandManager TabEvaluate3
Charlie2024-05-05ToolbarSketch Tools2
Bob2024-05-06CommandManager TabFeatures4
Alice2024-05-06ToolbarView Tools6
1
Step 1: Import the usage log data into your BI tool.
Load the table with columns: User, Date, Feature Type, Feature Name, Clicks.
Expected Result
Data table with 12 rows loaded for analysis.
2
Step 2: Create a measure to calculate total clicks per Feature Name.
Total Clicks = SUM(Clicks)
Expected Result
Measure that sums clicks for each feature.
3
Step 3: Create a pivot table with rows as Feature Name, columns as Feature Type, values as Total Clicks.
Rows = Feature Name, Columns = Feature Type, Values = Total Clicks
Expected Result
Pivot table showing total clicks by feature and type.
4
Step 4: Create a line chart showing daily total clicks over the month.
Axis = Date, Values = SUM(Clicks)
Expected Result
Line chart showing click trends by date.
5
Step 5: Highlight the most and least used CommandManager tabs and toolbars using conditional formatting.
Apply color scale on Total Clicks measure in pivot table.
Expected Result
Dashboard highlights features with highest and lowest usage.
6
Step 6: Add slicers to filter by User and Feature Type for interactive analysis.
Add slicers for User and Feature Type fields.
Expected Result
User can filter dashboard by user or feature type.
Final Result
CommandManager and Toolbars Usage Dashboard

+----------------------+----------------+------------+
| Feature Name         | CommandManager | Toolbar    |
+----------------------+----------------+------------+
| Features             | 15             |            |
| Evaluate             | 5              |            |
| Surfaces             | 1              |            |
| Sketch Tools         |                | 12         |
| View Tools           |                | 15         |
+----------------------+----------------+------------+

Daily Clicks Trend (May 1 - May 6):
2024-05-01: 8 clicks
2024-05-02: 6 clicks
2024-05-03: 13 clicks
2024-05-04: 6 clicks
2024-05-05: 5 clicks
2024-05-06: 10 clicks

Most used: View Tools (15 clicks), Features tab (15 clicks)
Least used: Surfaces tab (1 click)
The 'Features' CommandManager tab and 'View Tools' toolbar are the most frequently used features.
The 'Surfaces' tab is the least used among CommandManager tabs.
Usage peaks on May 3 with 13 clicks and dips on May 5 with 5 clicks.
Users tend to use both CommandManager tabs and toolbars actively, with some variation by feature.
Bonus Challenge

Create a heatmap calendar visualization showing daily usage intensity for each CommandManager tab and toolbar.

Show Hint
Use a matrix visual with dates on one axis and features on the other, color-coded by total clicks.