Complete the code to calculate a running total of Sales.
RUNNING_SUM([1])The RUNNING_SUM function requires a measure to sum over time. Using SUM([Sales]) correctly calculates the running total of sales.
Complete the code to compute a running total of Profit by Month.
RUNNING_SUM([1])To calculate running total of profit, use SUM([Profit]) inside RUNNING_SUM.
Fix the error in the running total calculation for Quantity.
RUNNING_SUM([1])The running total needs an aggregation like SUM([Quantity]). Using just [Quantity] causes an error because RUNNING_SUM expects an aggregated measure.
Fill both blanks to calculate running total of Sales partitioned by Region.
RUNNING_SUM([1]) OVER ([2])
Use SUM([Sales]) inside RUNNING_SUM and PARTITION BY [Region] to reset running total for each region.
Fill all three blanks to calculate running total of Profit ordered by Month within each Category.
RUNNING_SUM([1]) OVER ([2], [3])
Use SUM([Profit]) inside RUNNING_SUM. Then partition by category and order by month to get running totals per category over time.