In Tableau, dates can be treated as continuous or discrete. Which statement correctly describes the difference between continuous and discrete dates?
Think about the color of the pill and how Tableau displays dates on the axis.
Continuous dates in Tableau are shown as green pills and create a continuous timeline axis, including all dates in the range. Discrete dates are blue pills and show distinct date parts as headers or labels.
You want to create a line chart showing total sales over time with a smooth timeline including every date. Which date type should you use on the Columns shelf in Tableau?
Think about which date type creates a smooth timeline axis for line charts.
Continuous dates (green pills) create a continuous timeline axis, ideal for line charts showing trends over time. Discrete dates create headers or labels, which break the timeline into parts.
Given a sales table with a Date column, which DAX measure correctly calculates total sales by discrete year (not continuous timeline)?
Sales by Year = CALCULATE(SUM(Sales[Amount]), YEAR(Sales[Date]))
Which option correctly replaces the YEAR(Sales[Date]) part to work as a discrete year grouping?
Think about how to get distinct year values for grouping in DAX.
VALUES(YEAR(Sales[Date])) returns the distinct years from the Date column, which is needed for discrete year grouping. Other options do not provide distinct year values for grouping.
You created a line chart with a continuous date axis in Tableau, but the timeline shows unexpected gaps where no data exists. Which option best explains why this happens?
Think about how continuous axes handle missing data points.
Continuous date axes show all dates in the range, but if the data source lacks records for some dates, Tableau shows gaps. Discrete dates only show existing dates, so no gaps appear.
You are building a sales dashboard in Tableau that shows monthly sales trends and allows users to drill down to daily sales. Which approach best uses continuous and discrete dates to achieve this?
Consider which date type creates smooth timelines and which creates headers for drill down.
Continuous dates create smooth timelines ideal for main trends. Discrete dates create headers or labels, useful for drill down views showing exact date parts.