0
0
Tableaubi_tool~10 mins

Compute using (table across, down) in Tableau - Interactive Code Practice

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

Complete the code to compute the running total across the table.

Tableau
RUNNING_SUM(SUM([Sales])) [1] 'Table Across'
Drag options to blanks, or click blank then click option'
ACOMPUTE USING
BCOMPUTE
CWINDOW_SUM
DTOTAL
Attempts:
3 left
💡 Hint
Common Mistakes
Using WINDOW_SUM instead of COMPUTE USING
Omitting the direction phrase
Using TOTAL which is an aggregation, not a direction
2fill in blank
medium

Complete the code to compute the percent difference down the table.

Tableau
ZN(SUM([Profit])) [1] 'Table Down'
Drag options to blanks, or click blank then click option'
AWINDOW_AVG
BTOTAL
CWINDOW_SUM
DCOMPUTE USING
Attempts:
3 left
💡 Hint
Common Mistakes
Using WINDOW_AVG instead of COMPUTE USING
Not specifying the direction
Using TOTAL which is not for direction
3fill in blank
hard

Fix the error in the code to compute the moving average across the table.

Tableau
WINDOW_AVG(SUM([Sales])) [1] 'Table Across'
Drag options to blanks, or click blank then click option'
ACOMPUTE
BCOMPUTE USING
CWINDOW_SUM
DTOTAL
Attempts:
3 left
💡 Hint
Common Mistakes
Using COMPUTE without USING
Using WINDOW_SUM instead of WINDOW_AVG
Omitting the direction phrase
4fill in blank
hard

Fill both blanks to compute the running total down the table with correct syntax.

Tableau
RUNNING_SUM(SUM([Sales])) [1] [2]
Drag options to blanks, or click blank then click option'
ACOMPUTE USING
B'Table Down'
C'Table Across'
DWINDOW_SUM
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping 'Table Across' and 'Table Down'
Using WINDOW_SUM instead of COMPUTE USING
Omitting one of the phrases
5fill in blank
hard

Fill all three blanks to compute percent difference across the table with correct syntax.

Tableau
ZN(SUM([Profit])) [1] [2] [3]
Drag options to blanks, or click blank then click option'
ACOMPUTE USING
B'Table Across'
CPERCENT_DIFFERENCE
D'Table Down'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up 'Table Across' and 'Table Down'
Omitting the calculation type
Using WINDOW_SUM instead of PERCENT_DIFFERENCE