Complete the code to calculate total sales fixed by Region.
{FIXED [Region]: SUM([1])}The FIXED LOD expression fixes the aggregation by Region. We sum the Sales field.
Complete the code to fix average profit by Category.
{FIXED [Category]: AVG([1])}The FIXED LOD expression calculates the average profit fixed by Category.
Fix the error in the FIXED LOD expression to calculate total quantity by Segment.
{FIXED [1]: SUM([Quantity])}Dimension names in FIXED LOD expressions must be enclosed in square brackets, like [Segment].
Fill both blanks to calculate fixed average discount by Region and Category.
{FIXED [1], [2]: AVG([Discount])}FIXED LOD expressions require dimension names in square brackets. Here, Region and Category are fixed dimensions.
Fill all three blanks to calculate fixed total profit by Segment, Region, and Category.
{FIXED [1], [2], [3]: SUM([Profit])}The FIXED LOD expression fixes aggregation by Segment, Region, and Category. All dimension names must be bracketed.