In a SolidWorks sketch, you want to ensure two lines are perfectly flat and aligned from left to right. Which geometric relation should you apply?
Think about the direction that is flat and level.
Horizontal relation makes lines flat and aligned left to right, ensuring no tilt.
You have a dataset of geometric relations in sketches with a column 'RelationType'. Write a DAX measure to count how many 'Tangent' relations exist.
TangentCount = CALCULATE(COUNTROWS(Relations), Relations[RelationType] = "Tangent")Use CALCULATE with a filter condition for exact count.
Option B correctly uses CALCULATE with a filter condition to count rows where RelationType is 'Tangent'.
You want to create a dashboard showing counts of horizontal, vertical, coincident, and tangent relations in sketches. Which visualization type best helps compare these counts clearly?
Think about comparing counts side by side for categories.
A stacked bar chart clearly compares counts of relation types across sketches, showing totals and breakdowns.
Given this DAX measure:CoincidentCount = COUNTROWS(FILTER(Relations, Relations[RelationType] == "Coincident"))
What error will occur when running this?
Check the operator used for comparison in DAX.
DAX uses single '=' for comparison, '==' causes syntax error.
You have a large dataset of sketches with multiple geometric relations per sketch. You want to build a data model to quickly report counts of each relation type per sketch and overall. Which approach is best?
Think about flexibility and ease of aggregation in BI tools.
A flat table with one row per relation and columns for SketchID and RelationType allows easy filtering and aggregation with DAX.