Complete the code to calculate the average sales including the Category level.
AVG([1] [Category] : SUM([Sales]) })The INCLUDE LOD expression adds the specified dimension ([Category]) to the level of detail for the aggregation.
Complete the INCLUDE LOD expression to calculate total profit including both Region and Segment.
SUM([1] [Region], [Segment] : SUM([Profit]) })INCLUDE adds the specified dimensions ([Region], [Segment]) to the aggregation level.
Fix the error in the INCLUDE LOD expression to correctly calculate average discount including Sub-Category.
AVG([1] [Sub-Category] : AVG([Discount]) })The correct syntax uses INCLUDE without extra parentheses after it.
Fill the blank to calculate the sum of sales including Category and Sub-Category levels.
SUM([1] [Category], [Sub-Category] : SUM([Sales]) })The INCLUDE LOD expression adds the specified dimensions ([Category], [Sub-Category]) to the level of detail for the aggregation.
Fill the blank to create an INCLUDE LOD expression calculating average profit including Region and Segment.
AVG([1] [Region], [Segment] : SUM([Profit]) })The INCLUDE LOD expression adds the specified dimensions ([Region], [Segment]) to the level of detail for the aggregation.