Complete the code to create a fixed LOD expression that calculates the total sales per region.
{FIXED [Region]: SUM([1])}The fixed LOD expression fixes the aggregation at the Region level, so summing [Sales] gives total sales per region.
Complete the code to create an include LOD expression that adds product category to the aggregation scope for average sales.
{INCLUDE [[1]]: AVG([Sales])}The INCLUDE LOD expression adds Product Category to the aggregation scope, so average sales are calculated per product category within the existing view level.
Fix the error in this LOD expression that tries to exclude the Order Date from aggregation scope.
{EXCLUDE [[1]]: SUM([Sales])}The EXCLUDE LOD expression removes Order Date from the aggregation scope, so sales are summed ignoring the order date detail.
Fill both blanks to create a fixed LOD expression that calculates the total profit per customer segment.
{FIXED [[1]]: SUM([[2]])}The fixed LOD expression fixes aggregation at the Customer Segment level and sums the Profit field to get total profit per segment.
Fill all three blanks to create an include LOD expression that calculates average discount per product sub-category within each region.
{INCLUDE [[1]], [[2]]: AVG([[3]])}The INCLUDE LOD expression adds Product Sub-Category and Region to the aggregation scope and calculates the average Discount accordingly.