Complete the code to create an EXCLUDE LOD expression that excludes the Category dimension.
{EXCLUDE [1] : SUM([Sales])}The EXCLUDE LOD expression removes the specified dimension from the view's level of detail. Here, excluding [Category] means the calculation ignores Category when summing Sales.
Complete the EXCLUDE LOD expression to calculate average sales excluding the Region dimension.
{EXCLUDE [1] : AVG([Sales])}Excluding [Region] means the average sales calculation ignores the Region dimension, aggregating over all regions.
Fix the error in the EXCLUDE LOD expression that tries to exclude the Customer dimension but has incorrect syntax.
{EXCLUDE [1] SUM([Profit])}The correct syntax requires the dimension inside square brackets without extra commas or semicolons, and a colon after the dimension. The fixed expression is {EXCLUDE [Customer] : SUM([Profit])}.
Fill both blanks to create an EXCLUDE LOD expression that excludes both Region and Category dimensions.
{EXCLUDE [1], [2] : SUM([Sales])}To exclude multiple dimensions, list them separated by commas inside the EXCLUDE clause. Here, excluding [Region] and [Category] means the sum of sales ignores these two dimensions.
Fill all three blanks to write an EXCLUDE LOD expression that excludes Region and Customer, and calculates average profit.
{EXCLUDE [1], [2] : [3]([Profit])}The expression excludes [Region] and [Customer] dimensions and calculates the average profit using AVG. The correct syntax is {EXCLUDE [Region], [Customer] : AVG([Profit])}.