0
0
Tableaubi_tool~20 mins

Creating a dashboard in Tableau - Practice Exercises

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Dashboard Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
visualization
intermediate
2:00remaining
Choosing the Right Chart Type for Sales Data

You have monthly sales data for different product categories. You want to create a dashboard that clearly shows sales trends over time and compares categories. Which chart type should you use?

AA line chart to show sales trends over time for each category.
BA pie chart to show the proportion of sales for each month.
CA scatter plot to show sales amounts against product prices.
DA bar chart showing total sales per product category without time.
Attempts:
2 left
💡 Hint

Think about how to show changes over time clearly.

dax_lod_result
intermediate
2:00remaining
Calculating Total Sales per Region with Filters

In Tableau, you want to calculate total sales per region but only for the current year. Which calculated field expression will give the correct total sales filtered by the current year?

ASUM(IF YEAR([Order Date]) = YEAR(TODAY()) THEN [Sales] END)
BSUM([Sales]) WHERE YEAR([Order Date]) = YEAR(TODAY())
CIF YEAR([Order Date]) = YEAR(TODAY()) THEN SUM([Sales]) END
DSUM(IF YEAR([Order Date]) = YEAR(TODAY()) THEN [Sales] ELSE 0 END)
Attempts:
2 left
💡 Hint

Remember how to use conditional aggregation in Tableau calculated fields.

data_modeling
advanced
2:30remaining
Optimizing Data Source for Dashboard Performance

You have a large dataset with sales, customers, and products tables. Your dashboard is slow to load. What is the best data modeling approach to improve performance in Tableau?

AImport only the sales table and filter data in Tableau dashboard filters.
BUse a star schema with fact and dimension tables and create relationships in Tableau.
CJoin all tables into one flat table with all columns before importing.
DUse multiple data sources without any joins or relationships.
Attempts:
2 left
💡 Hint

Think about how databases organize data for fast queries.

🎯 Scenario
advanced
2:30remaining
Designing a Dashboard for Mobile and Desktop

You need to create a dashboard that works well on both desktop and mobile devices. What is the best design practice to ensure usability on both?

ADesign only for desktop and let users zoom or scroll on mobile devices.
BDesign a single dashboard with many small charts to fit all data on one screen.
CCreate two separate dashboards optimized for desktop and mobile and switch based on device.
DUse large fonts and simple layouts that adapt to screen size with Tableau device designer.
Attempts:
2 left
💡 Hint

Think about responsive design and user experience.

🔧 Formula Fix
expert
3:00remaining
Troubleshooting a Filter Not Applying Correctly

You added a filter on 'Region' to your dashboard, but selecting a region does not update the charts. What is the most likely cause?

AThe dashboard has no charts connected to the 'Region' field.
BThe data source is missing the 'Region' field in the tables.
CThe filter is set to apply to only one worksheet, not the entire dashboard.
DThe filter is set to 'Show All Values' instead of 'Only Relevant Values'.
Attempts:
2 left
💡 Hint

Check how filters are applied across worksheets in Tableau.