Think about how to sum sales over the current and previous two months in a rolling window.
WINDOW_SUM with offsets -2 to 0 sums sales for the current month and two prior months, creating a 3-month rolling sum.
Rolling averages are best shown as a smooth line over time to show trends.
A bar chart with monthly revenue and a rolling average line overlay clearly shows both raw data and smoothed trend.
Think about cumulative totals versus sums over a sliding window.
RUNNING_SUM accumulates values from the first row up to the current row, while WINDOW_SUM sums values within a defined window around the current row.
WINDOW_AVG(SUM([Sales]), 0, 11)
Rolling averages usually include previous periods, not future ones.
The window offsets 0 to 11 sum the current and next 11 rows, which is forward-looking. For a rolling average including past 12 months, offsets should be -11 to 0.
Growth rate compares current 4 quarters sum to previous 4 quarters sum.
Option B calculates sum of current 4 quarters (offsets -3 to 0) and previous 4 quarters (offsets -7 to -4), then divides to get growth rate.