0
0
Tableaubi_tool~10 mins

Why time analysis reveals trends in Tableau - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a continuous date axis in Tableau.

Tableau
DATETRUNC('[1]', [Order Date])
Drag options to blanks, or click blank then click option'
AWEEK
BDAY
CYEAR
DMONTH
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing DAY or WEEK which creates too granular data for broad trends.
2fill in blank
medium

Complete the calculation to find the moving average over 3 months.

Tableau
WINDOW_AVG(SUM([Sales]), -[1], 0)
Drag options to blanks, or click blank then click option'
A1
B3
C4
D2
Attempts:
3 left
💡 Hint
Common Mistakes
Using -3 which covers 4 months, or -1 which covers 2 months.
3fill in blank
hard

Fix the error in this calculated field to compute year-over-year sales growth.

Tableau
([Sales] - LOOKUP([Sales], -[1])) / LOOKUP([Sales], -[1])
Drag options to blanks, or click blank then click option'
A1
B12
C6
D3
Attempts:
3 left
💡 Hint
Common Mistakes
Using 1 or 3 which compares to previous months, not the same month last year.
4fill in blank
hard

Fill both blanks to create a filter that shows data only for the last 6 months.

Tableau
DATEDIFF('[1]', [2], TODAY()) <= 6
Drag options to blanks, or click blank then click option'
A[Order Date]
BNOW()
CMONTH
DDAY
Attempts:
3 left
💡 Hint
Common Mistakes
Using NOW() instead of [Order Date], or DAY instead of MONTH.
5fill in blank
hard

Fill all three blanks to calculate cumulative sales over time.

Tableau
RUNNING_SUM(SUM([1])) OVER (ORDER BY [2] [3])
Drag options to blanks, or click blank then click option'
A[Sales]
B[Order Date]
CASC
DDESC
Attempts:
3 left
💡 Hint
Common Mistakes
Ordering DESC which reverses cumulative order, or summing wrong field.