Complete the code to compute the running total across the table.
RUNNING_SUM(SUM([Sales])) [1] 'Table Across'
In Tableau, COMPUTE USING specifies the direction for table calculations like running total.
Complete the code to compute the percent difference down the table.
ZN(SUM([Profit])) [1] 'Table Down'
COMPUTE USING is used to specify the direction for table calculations like percent difference.
Fix the error in the code to compute the moving average across the table.
WINDOW_AVG(SUM([Sales])) [1] 'Table Across'
The correct syntax uses COMPUTE USING to specify the direction for the window average.
Fill both blanks to compute the running total down the table with correct syntax.
RUNNING_SUM(SUM([Sales])) [1] [2]
Use COMPUTE USING followed by 'Table Down' to specify the direction for running total down the table.
Fill all three blanks to compute percent difference across the table with correct syntax.
ZN(SUM([Profit])) [1] [2] [3]
The syntax requires COMPUTE USING to specify direction, 'Table Across' for direction, and PERCENT_DIFFERENCE as the calculation type.