0
0
Tableaubi_tool~20 mins

Custom table calculation scope in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Table Calculation Scope Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Table Calculation Scope in Tableau

In Tableau, when you create a table calculation, the scope determines which data the calculation processes. Which of the following best describes the effect of setting the scope to Pane (Down)?

AThe calculation is computed separately for each vertical pane, moving down the rows within that pane.
BThe calculation is computed across the entire table horizontally, ignoring panes.
CThe calculation is computed for the entire table, ignoring any pane divisions.
DThe calculation is computed separately for each horizontal pane, moving across the columns within that pane.
Attempts:
2 left
💡 Hint

Think about how data is grouped visually in panes and how the calculation moves down rows.

dax_lod_result
intermediate
2:00remaining
Result of Table Calculation with Specific Scope

Consider a Tableau table with sales data by Region (rows) and Month (columns). You apply a running total table calculation on Sales with scope set to Table (Across). What will be the running total value for the last month in the first region?

Tableau
Region: East, Months: Jan=100, Feb=150, Mar=200
Running Total with scope Table (Across)
A650 (sum of all months and all regions)
B450 (sum of Jan, Feb, Mar for all regions combined)
C200 (value of Mar only for East region)
D450 (sum of Jan, Feb, Mar for East region only)
Attempts:
2 left
💡 Hint

Scope Table (Across) means calculation moves across columns for each row.

visualization
advanced
2:30remaining
Choosing the Correct Scope for Percent of Total

You want to create a visualization showing each product's sales as a percentage of total sales within each category. Which table calculation scope should you use to get the correct percentage?

APane (Down) to calculate percent within each category pane vertically.
BTable (Down) to calculate percent across all products vertically ignoring categories.
CTable (Across) to calculate percent across all products horizontally ignoring categories.
DPane (Across) to calculate percent within each category pane horizontally.
Attempts:
2 left
💡 Hint

Think about how categories are grouped in panes and how you want to calculate percentages within those groups vertically.

🔧 Formula Fix
advanced
2:30remaining
Debugging Unexpected Table Calculation Results

You created a running total table calculation on Sales with scope set to Pane (Across), but the totals reset unexpectedly within the pane. What is the most likely cause?

AThe running total is applied on a measure that contains null values, causing resets.
BThe data is partitioned into multiple panes due to additional dimensions in the view, causing resets.
CThe calculation is ignoring pane boundaries and summing across the entire table.
DThe scope setting is invalid and Tableau defaults to Table (Down).
Attempts:
2 left
💡 Hint

Consider how adding dimensions affects pane divisions and calculation partitions.

🎯 Scenario
expert
3:00remaining
Designing a Custom Table Calculation Scope for Complex Layout

You have a Tableau dashboard showing sales by Region (rows), Product Category (columns), and Year (filter). You want a running total that restarts for each Region and Product Category combination but sums across months within the year. Which scope and addressing should you choose?

ASet scope to Table (Across) with addressing on Region and Product Category, ignoring Month.
BSet scope to Pane (Across) with addressing on Month, restarting at each Region pane only.
CSet scope to Pane (Down) with addressing on Month, restarting at each Region and Product Category pane.
DSet scope to Table (Down) with addressing on Product Category and Month, ignoring Region.
Attempts:
2 left
💡 Hint

Think about how panes are defined by Region and Product Category and how the calculation should move down months.