Bird
Raised Fist0
Tableaubi_tool~10 mins

Continuous vs discrete dates in Tableau - Interactive Practice

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a continuous date axis in Tableau.

Tableau
DATEPART("[1]", [Order Date])
Drag options to blanks, or click blank then click option'
AMONTH
BYEAR
CDAY
DWEEK
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing MONTH or DAY creates discrete segments, not continuous.
2fill in blank
medium

Complete the code to create a discrete date field in Tableau.

Tableau
DATETRUNC("[1]", [Order Date])
Drag options to blanks, or click blank then click option'
AHOUR
BDAY
CYEAR
DMONTH
Attempts:
3 left
💡 Hint
Common Mistakes
Using YEAR creates yearly grouping, which can be continuous or discrete depending on context.
3fill in blank
hard

Fix the error in the year comparison calculation.

Tableau
IF DATEPART("year", [Order Date]) = [1] THEN [Sales] END
Drag options to blanks, or click blank then click option'
A2023
B"2023"
C"Year"
DYear
Attempts:
3 left
💡 Hint
Common Mistakes
Using quotes around numbers causes type mismatch errors.
4fill in blank
hard

Fill both blanks to sum sales for January 2023.

Tableau
SUM(IF DATETRUNC("[1]", [Order Date]) = [2] THEN [Sales] ELSE 0 END)
Drag options to blanks, or click blank then click option'
AMONTH
BDATE("2023-01-01")
CYEAR
DDATE("2023-02-01")
Attempts:
3 left
💡 Hint
Common Mistakes
Using YEAR truncation or wrong date values causes incorrect grouping.
5fill in blank
hard

Fill all three blanks to create a discrete date filter for sales in January and February.

Tableau
IF DATENAME("[1]", [Order Date]) IN ([2], [3]) THEN [Sales] ELSE 0 END
Drag options to blanks, or click blank then click option'
AMONTH
B"January"
C"February"
D"March"
Attempts:
3 left
💡 Hint
Common Mistakes
Using YEAR or QUARTER instead of MONTH causes wrong filtering.

Practice

(1/5)
1. In Tableau, what color pill represents a continuous date field on the Columns or Rows shelf?
easy
A. Green pill
B. Blue pill
C. Red pill
D. Yellow pill

Solution

  1. Step 1: Understand Tableau date pill colors

    Tableau uses green pills for continuous fields and blue pills for discrete fields.
  2. Step 2: Identify continuous date pill color

    Continuous dates appear as green pills to show smooth timelines.
  3. Final Answer:

    Green pill -> Option A
  4. Quick Check:

    Continuous date = Green pill [OK]
Hint: Continuous dates always show as green pills in Tableau [OK]
Common Mistakes:
  • Confusing continuous with discrete pill colors
  • Thinking blue pills represent continuous dates
  • Assuming color depends on data type, not continuous/discrete
2. Which of the following is the correct way to convert a date field to discrete in Tableau?
easy
A. Right-click the date field and select 'Convert to Continuous'
B. Right-click the date field and select 'Convert to Discrete'
C. Drag the date field to Filters shelf
D. Double-click the date field to create a continuous axis

Solution

  1. Step 1: Locate conversion options for date fields

    In Tableau, right-clicking a date field shows options to convert between continuous and discrete.
  2. Step 2: Select the correct conversion for discrete

    Choosing 'Convert to Discrete' changes the pill color to blue and treats dates as categories.
  3. Final Answer:

    Right-click the date field and select 'Convert to Discrete' -> Option B
  4. Quick Check:

    Convert to Discrete = Right-click the date field and select 'Convert to Discrete' [OK]
Hint: Right-click date field to toggle continuous/discrete [OK]
Common Mistakes:
  • Selecting 'Convert to Continuous' instead of discrete
  • Dragging to Filters shelf does not change continuous/discrete
  • Double-clicking creates continuous axis by default
3. Given a line chart with a continuous date on Columns and Sales on Rows, what happens if you change the date to discrete?
medium
A. The chart shows a smooth timeline with connected points.
B. The chart becomes empty because discrete dates are invalid.
C. The chart breaks into separate bars for each date value.
D. The chart shows a scatter plot with random points.

Solution

  1. Step 1: Understand continuous date behavior in line charts

    Continuous dates create a smooth timeline with connected points forming a line.
  2. Step 2: Understand discrete date behavior in line charts

    Discrete dates treat each date as a separate category, breaking the line into separate bars or marks.
  3. Final Answer:

    The chart breaks into separate bars for each date value. -> Option C
  4. Quick Check:

    Discrete date = separate categories [OK]
Hint: Discrete dates split timeline into separate categories [OK]
Common Mistakes:
  • Expecting a smooth line with discrete dates
  • Thinking discrete dates create scatter plots
  • Assuming discrete dates cause errors or empty charts
4. You created a line chart with a continuous date but the axis shows unexpected gaps. What is the most likely cause?
medium
A. The date field is actually discrete, not continuous.
B. The date field is formatted as text.
C. The Sales measure is aggregated incorrectly.
D. There are missing dates in the data causing gaps.

Solution

  1. Step 1: Check date field type

    Continuous dates create smooth axes; if gaps appear, the field is likely continuous, not discrete.
  2. Step 2: Identify cause of gaps

    Missing dates in the data cause breaks in continuous timelines, showing gaps on the axis.
  3. Final Answer:

    There are missing dates in the data causing gaps. -> Option D
  4. Quick Check:

    Missing dates cause gaps in continuous axis [OK]
Hint: Gaps in continuous axis usually mean missing dates [OK]
Common Mistakes:
  • Assuming date field is discrete when it's continuous
  • Thinking text formatting causes axis gaps
  • Blaming measure aggregation for axis gaps
5. You want to compare sales performance by month as distinct groups and also see the overall sales trend over time. How should you use continuous and discrete dates in your Tableau dashboard?
hard
A. Use discrete month for the bar chart and continuous month for the line chart.
B. Use continuous month for both charts to keep consistency.
C. Use discrete month for both charts to show clear categories.
D. Use continuous month for the bar chart and discrete month for the line chart.

Solution

  1. Step 1: Understand visualization goals

    Comparing sales by month as distinct groups fits discrete dates (blue pills) for clear categories.
  2. Step 2: Understand trend visualization

    Showing overall sales trend over time fits continuous dates (green pills) for smooth timelines.
  3. Step 3: Apply correct date types per chart

    Use discrete month for bar chart to compare groups, continuous month for line chart to show trend.
  4. Final Answer:

    Use discrete month for the bar chart and continuous month for the line chart. -> Option A
  5. Quick Check:

    Discrete for groups, continuous for trends [OK]
Hint: Discrete = groups, Continuous = trends in Tableau dates [OK]
Common Mistakes:
  • Using continuous dates for group comparisons
  • Using discrete dates for trend lines
  • Applying same date type to all charts regardless of purpose