What is the main purpose of using a sketch fillet in a CAD sketch?
Think about how corners look when they are smoothed out.
A sketch fillet rounds the corner between two lines, making the transition smooth and curved.
Which statement correctly describes the difference between a sketch fillet and a sketch chamfer?
Think about the shape of the corner after applying each tool.
A fillet rounds the corner with an arc, while a chamfer cuts the corner at an angle creating a straight edge.
Given a sketch with multiple corners, you want to calculate how many fillets have been applied. Which DAX expression correctly counts the fillet features in the 'SketchFeatures' table where 'FeatureType' equals 'Fillet'?
COUNTROWS(FILTER(SketchFeatures, SketchFeatures[FeatureType] = "Fillet"))Use FILTER to select rows, then COUNTROWS to count them.
Option A filters the table for fillet features and counts the rows correctly. Option A syntax is incorrect for CALCULATE filter. Option A works but is less efficient. Option A is invalid syntax.
You have data on how many fillets and chamfers are used in different sketches. Which visualization best shows the comparison of fillet vs chamfer counts across sketches?
Think about how to compare two categories across multiple items clearly.
A clustered bar chart allows side-by-side comparison of fillet and chamfer counts per sketch, making differences easy to see.
You have this DAX measure to calculate total chamfers:TotalChamfers = COUNTROWS(FILTER(SketchFeatures, SketchFeatures[FeatureType] = "Chamfer"))
But it returns zero even though there are chamfers in the data. What is the most likely cause?
Check the exact text values in the 'FeatureType' column.
If the 'FeatureType' values have extra spaces or different letter cases, the filter condition will fail to match, causing zero results.