Complete the code to create a measure with a proper name.
Total Sales = SUM([1][SalesAmount])The measure name should start with a letter and avoid special characters. 'Sales' is a valid table name.
Complete the code to follow naming conventions for calculated columns.
Profit Margin = DIVIDE([1][Profit], [1][SalesAmount])
Table names should be capitalized and not start with numbers or contain special characters. 'Sales' is correct.
Fix the error in the measure name to follow naming conventions.
[1] = SUM(Sales[Units])Measure names should not contain hyphens. Using underscore '_' is acceptable and improves readability.
Fill both blanks to create a properly named calculated table and column.
NewTable = SELECTCOLUMNS([1], "[2]", [SalesAmount])
Table names start with uppercase letters without special characters. Column names should be descriptive and use camel case without spaces or special characters.
Fill all three blanks to define a measure with proper naming conventions and syntax.
[1] = CALCULATE(SUM([2][Revenue]), FILTER([2], [2][Region] = "West"))
Measure names should be descriptive and use camel case starting with uppercase. Table names should be capitalized without special characters. Using the same table name consistently is important.