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?
Think about how to show changes over time clearly.
A line chart is best to show trends over time for multiple categories because it connects data points in order and allows easy comparison.
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?
Remember how to use conditional aggregation in Tableau calculated fields.
Option A correctly sums sales only when the order year matches the current year. Option A includes an unnecessary ELSE 0, C tries to sum inside an IF which is incorrect, and D uses invalid WHERE syntax.
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?
Think about how databases organize data for fast queries.
A star schema separates facts and dimensions, allowing Tableau to query efficiently. Flattening tables (B) can cause redundancy and slow performance. Multiple sources without joins (C) won't combine data properly. Importing only sales (A) loses context.
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?
Think about responsive design and user experience.
Option D uses Tableau's device designer to create adaptable layouts with readable fonts and simple visuals, improving usability on all devices. Option D is possible but doubles work. B causes clutter. D hurts mobile experience.
You added a filter on 'Region' to your dashboard, but selecting a region does not update the charts. What is the most likely cause?
Check how filters are applied across worksheets in Tableau.
If a filter applies only to one worksheet, other charts won't update. The 'Region' field usually exists (B). Charts usually connect to 'Region' if filtered (A). 'Show All Values' affects dropdown options, not filter effect (D).