0
0
Tableaubi_tool~5 mins

Moving average in Tableau - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a moving average in data visualization?
A moving average smooths data by calculating the average of a set number of data points over time. It helps show trends by reducing short-term fluctuations.
Click to reveal answer
beginner
How do you create a moving average in Tableau?
You use a table calculation called WINDOW_AVG() over a measure, specifying the range of data points to average, like the last 3 months.
Click to reveal answer
beginner
Why use a moving average instead of raw data points?
Because it reduces noise and shows clearer trends, making it easier to understand overall patterns in data.
Click to reveal answer
intermediate
What does WINDOW_AVG(SUM([Sales]), -2, 0) mean in Tableau?
It calculates the average of the current and previous two data points of the SUM of Sales, creating a 3-point moving average.
Click to reveal answer
intermediate
What is the difference between a simple moving average and a weighted moving average?
A simple moving average gives equal weight to all points, while a weighted moving average gives more importance to recent points.
Click to reveal answer
What is the main purpose of a moving average in a dashboard?
ATo filter out all data except the latest
BTo highlight short-term spikes
CTo count the number of data points
DTo smooth data and show trends
Which Tableau function is commonly used to calculate a moving average?
AWINDOW_AVG()
BLOOKUP()
CIF()
DSUM()
In a 3-point moving average, how many data points are averaged?
A1
B2
C3
D4
What does the '-2' mean in WINDOW_AVG(SUM([Sales]), -2, 0)?
AStart averaging two points after current
BStart averaging two points before current
CIgnore two points
DAverage only current point
Which moving average type gives more importance to recent data?
AWeighted moving average
BSimple moving average
CCumulative average
DMedian average
Explain how a moving average helps in understanding sales trends over time.
Think about how averaging helps see the big picture beyond daily ups and downs.
You got /4 concepts.
    Describe the steps to create a 3-point moving average in Tableau using WINDOW_AVG.
    Focus on the function and the window range parameters.
    You got /4 concepts.