Complete the code to create a calculated field that sums sales.
SUM([1])The SUM function adds up all values in the Sales field, which is essential for Pareto analysis.
Complete the code to calculate the running total of sales.
RUNNING_SUM([1])RUNNING_SUM needs the total sales at each step, so SUM(Sales) is correct.
Fix the error in the calculated field to compute the percent of total sales.
RUNNING_SUM(SUM(Sales)) / [1]WINDOW_SUM(SUM(Sales)) calculates the total sales over the window, needed for percent calculation.
Fill both blanks to create a calculated field that ranks products by sales.
RANK_[1](SUM([2]))
RANK_DESC ranks products from highest to lowest sales, which is typical for Pareto analysis.
Fill all three blanks to create a calculated field for cumulative percent sales.
(RUNNING_SUM(SUM([1]))) / (WINDOW_SUM(SUM([2]))) * [3]
This formula calculates the cumulative percent of sales by dividing running sum by total sum and multiplying by 100.