You have two measures: Sales and Profit Margin. You want to show their trends over time on the same line chart but with different scales. Which option correctly describes how to create this visualization in Tableau?
Think about how Tableau allows overlaying two measures with different scales.
Option B correctly describes the process to create a dual-axis line chart in Tableau, allowing two measures with different scales to be shown together.
Given a sales table with columns Month and SalesAmount, which DAX measure correctly calculates the running total of sales by month?
Consider how to accumulate sales up to the current month.
Option A uses CALCULATE with FILTER and ALL to sum sales up to the current month, correctly computing the running total.
You want to create a line chart showing monthly sales trends for multiple product categories. Your current data model has a large sales fact table and a separate date dimension table. What is the best modeling practice to optimize performance and accuracy for this line chart?
Think about how date tables improve time intelligence calculations.
Marking the date dimension as a Date Table and relating it properly ensures efficient time-based calculations and filtering for line charts.
You created a line chart showing monthly sales, but some months are missing from the line, causing breaks. What is the most likely cause and fix?
Consider how Tableau or BI tools treat date axes in line charts.
Setting the axis to continuous ensures all dates appear on the axis, preventing breaks in the line chart.
You want to build a line chart dashboard where users can select which measure to display (e.g., Sales, Profit, Quantity). Which approach best supports this dynamic selection in Tableau?
Think about how parameters and calculated fields can create dynamic visuals.
Using a parameter with a calculated field allows switching the measure dynamically in one worksheet, making the dashboard interactive and efficient.