Complete the code to create a fixed LOD expression that calculates total sales per region.
{FIXED [Region]: SUM([1])}The fixed LOD expression fixes the calculation at the Region level and sums the Sales field.
Complete the table calculation to compute the running total of sales.
RUNNING_SUM([1])RUNNING_SUM calculates the cumulative total of the Sales field across the table.
Fix the error in this LOD expression that tries to calculate average sales per customer.
{FIXED [Customer ID]: AVG([1])}The AVG function should be applied to the Sales field to get average sales per customer.
Fill both blanks to create a table calculation that computes the percent of total sales by category.
SUM([1]) / TOTAL(SUM([2]))
The calculation divides the sum of Sales per category by the total sum of Sales to get the percent of total.
Fill all three blanks to create a fixed LOD expression that calculates the maximum profit per segment and category.
{FIXED [1], [2]: MAX([3])}The fixed LOD fixes the calculation at Segment and Category levels and finds the maximum Profit.