0
0
Tableaubi_tool~20 mins

Text tables in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Text Table Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
visualization
intermediate
2:00remaining
Creating a Basic Text Table

You have sales data with Region and Sales fields. You want to create a text table that shows total sales per region.

Which step is essential to display the total sales correctly in a text table?

ADrag <strong>Region</strong> to Rows and <strong>Sales</strong> to Text on the Marks card.
BDrag <strong>Sales</strong> to Rows and <strong>Region</strong> to Columns.
CDrag <strong>Region</strong> to Filters and <strong>Sales</strong> to Tooltip.
DDrag <strong>Sales</strong> to Color and <strong>Region</strong> to Size.
Attempts:
2 left
💡 Hint

Think about how to show categories on rows and numbers as text.

dax_lod_result
intermediate
2:00remaining
Calculating Total Sales per Category

In Tableau, you want to calculate total sales per product category and display it in a text table. Which Tableau calculation will give you the total sales per category regardless of other filters?

Tableau
SUM({FIXED [Category]: SUM([Sales])})
ASUM([Sales])
BSUM({FIXED [Category]: SUM([Sales])})
CWINDOW_SUM(SUM([Sales]))
DTOTAL(SUM([Sales]))
Attempts:
2 left
💡 Hint

Look for a calculation that fixes the level of detail to Category.

🧠 Conceptual
advanced
2:00remaining
Understanding Text Table Limitations

Which of the following is a common limitation when using text tables in Tableau for large datasets?

AText tables can become hard to read and slow to render with many rows and columns.
BText tables automatically summarize data without user control.
CText tables cannot display numeric data.
DText tables do not allow sorting or filtering.
Attempts:
2 left
💡 Hint

Think about what happens when you have too much data in a simple table.

🔧 Formula Fix
advanced
2:00remaining
Fixing Incorrect Aggregation in Text Table

You created a text table showing Region and Sales. The sales numbers are showing as individual transaction amounts instead of totals per region.

What is the most likely cause?

AThe <strong>Region</strong> field is filtered out.
BThe <strong>Sales</strong> field is aggregated with SUM.
CThe <strong>Sales</strong> field is not aggregated; it is used as a dimension instead of a measure.
DThe text table is sorted by <strong>Region</strong>.
Attempts:
2 left
💡 Hint

Check if sales values are summed or shown individually.

🎯 Scenario
expert
3:00remaining
Designing a Responsive Text Table Dashboard

You need to build a dashboard with a text table showing sales by product and region. The dashboard must be usable on desktop and mobile devices.

Which design practice best ensures readability and usability across devices?

AShow all product and region columns without scrolling and use small fonts to fit all data.
BUse only colors to differentiate data without text labels to save space.
CUse multiple text tables with all details on desktop and hide them on mobile.
DUse a simple text table with limited columns, enable horizontal scrolling, and use clear fonts with good contrast.
Attempts:
2 left
💡 Hint

Think about how to keep tables readable on small screens.