0
0
Tableaubi_tool~20 mins

Layout containers (horizontal, vertical) in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Layout Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding Horizontal vs Vertical Containers

In Tableau, you want to arrange three charts side by side so they appear in a row. Which container type should you use?

AUse a horizontal container to place the charts side by side in a row.
BUse a vertical container to stack the charts horizontally.
CUse a horizontal container to stack the charts vertically.
DUse a vertical container to place the charts side by side in a row.
Attempts:
2 left
💡 Hint

Think about how horizontal means left to right and vertical means top to bottom.

🎯 Scenario
intermediate
1:30remaining
Fixing Overlapping Dashboards with Containers

You created a dashboard in Tableau but the charts overlap each other when you resize the window. Which container type helps prevent overlapping by stacking charts vertically?

AUse a horizontal container to stack charts vertically.
BUse a vertical container to stack charts vertically.
CUse a horizontal container to place charts side by side.
DUse a floating container to stack charts vertically.
Attempts:
2 left
💡 Hint

Vertical containers stack items from top to bottom.

visualization
advanced
2:00remaining
Predict the Layout Result of Nested Containers

Consider a Tableau dashboard with a vertical container holding two items: a horizontal container with two charts, and a single chart below it. How will the charts be arranged?

AThree charts stacked vertically in a single column.
BThree charts side by side in a single row.
CTwo charts side by side on top, and one chart below them stacked vertically.
DOne chart on top, and two charts stacked vertically below it.
Attempts:
2 left
💡 Hint

Think about how vertical containers stack items top to bottom, and horizontal containers arrange items left to right.

🔧 Formula Fix
advanced
2:00remaining
Identify the Cause of Misaligned Charts

You placed three charts inside a horizontal container in Tableau, but the third chart appears below the first two instead of in the same row. What is the most likely cause?

AThe container width is too small, causing the third chart to wrap to the next line.
BThe dashboard size is set to fixed, preventing horizontal arrangement.
CThe charts have floating layout enabled, which breaks the container layout.
DYou accidentally used a vertical container instead of a horizontal container.
Attempts:
2 left
💡 Hint

Think about how containers behave when there is not enough space.

dax_lod_result
expert
2:30remaining
Calculate Total Sales per Region Using LOD Expression

In Tableau, you want to calculate total sales per region regardless of filters on product category. Which Level of Detail (LOD) expression correctly achieves this?

A{INCLUDE [Region] : SUM([Sales])}
BSUM([Sales]) OVER (PARTITION BY [Region])
C{EXCLUDE [Region] : SUM([Sales])}
D{FIXED [Region] : SUM([Sales])}
Attempts:
2 left
💡 Hint

FIXED LOD expressions ignore filters except those on the fixed dimension.