0
0
Tableaubi_tool~20 mins

Continuous vs discrete dates in Tableau - Practice Questions

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Date Mastery in Tableau
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding Continuous vs Discrete Dates in Tableau

In Tableau, dates can be treated as continuous or discrete. Which statement correctly describes the difference between continuous and discrete dates?

ADiscrete dates create a green pill and show a timeline with all dates in a range, while continuous dates create a blue pill and show distinct date parts as separate headers.
BContinuous dates create a green pill and show a timeline with all dates in a range, while discrete dates create a blue pill and show distinct date parts as separate headers.
CContinuous dates and discrete dates both create blue pills but differ in sorting order only.
DDiscrete dates create a green pill and continuous dates create a blue pill, but both display dates as a list without timeline.
Attempts:
2 left
💡 Hint

Think about the color of the pill and how Tableau displays dates on the axis.

visualization
intermediate
1:30remaining
Visualizing Sales Over Time with Continuous Dates

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?

AUse a continuous date (green pill) like Exact Date to show sales on a continuous timeline.
BUse a discrete date (blue pill) like YEAR(Date) to show sales by year as separate columns.
CUse a string representation of the date to sort sales alphabetically.
DUse a discrete date (blue pill) like MONTH(Date) to show sales by month as separate headers.
Attempts:
2 left
💡 Hint

Think about which date type creates a smooth timeline axis for line charts.

dax_lod_result
advanced
2:00remaining
Calculating Sales by Discrete Year vs Continuous Date

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?

AFILTER(Sales, YEAR(Sales[Date]) = YEAR(TODAY()))
BALL(Sales[Date])
CDISTINCT(Sales[Date])
DVALUES(YEAR(Sales[Date]))
Attempts:
2 left
💡 Hint

Think about how to get distinct year values for grouping in DAX.

🔧 Formula Fix
advanced
2:00remaining
Fixing a Tableau Date Axis Showing Unexpected Gaps

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?

AThe date field is continuous, but the data source has missing dates, so Tableau shows gaps in the timeline.
BThe date field is discrete, and Tableau automatically fills missing dates with nulls, so gaps appear.
CThe date field is continuous, and Tableau fills missing dates with zeros, so no gaps should appear.
DThe date field is discrete, so Tableau only shows dates with data, causing gaps.
Attempts:
2 left
💡 Hint

Think about how continuous axes handle missing data points.

🎯 Scenario
expert
2:30remaining
Choosing Date Type for a Sales Dashboard with Mixed Granularity

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?

AUse discrete MONTH(Date) pills for the main trend and continuous DAY(Date) pills for drill down to show a smooth daily timeline.
BUse discrete YEAR(Date) pills for the main trend and continuous MONTH(Date) pills for drill down to show a smooth monthly timeline.
CUse a continuous MONTH(Date) pill for the main trend and discrete DAY(Date) pills for drill down to show exact days as headers.
DUse continuous YEAR(Date) pills for the main trend and discrete MONTH(Date) pills for drill down to show months as headers.
Attempts:
2 left
💡 Hint

Consider which date type creates smooth timelines and which creates headers for drill down.