Date Functions

Dates are a common element in many data sources. If a field contains recognizable dates, it will have a date or datetime data type. When date fields are used in the viz they get a special set of functionality, including an automatic date hierarchy drill down, date-specific filter options and specialised date formatting options. Using dates in calculations often requires the use of date-specific functions.

Gain familiarity with other date concepts

Date functions sometimes reference date-specific elements, including the date_part argument, the optional [start_of_week] parameter and date literals (#). These are covered in more detail at the end of this topic.

There are several other topics that might be of interest but aren't part of date functions:

Tip: Is your field already recognised as a date (it has a date icon in the Data pane) and are you trying to control how it appears in the viz?

You might need to format it rather than use a date function. See Custom Date Formats and related topics for working with date fields. The date functions on this page allow you to manipulate dates’ calculated fields, not set their display formatting.

Date functions available in Tableau

DATE

Type conversion function that changes string and number expressions into dates, as long as they are in a recognisable format.

SyntaxDATE(expression)
OutputDate
DefinitionReturns a date given a number, string or date <expression>.
Example
DATE([Employee Start Date])
DATE("September 22, 2018") 
DATE("9/22/2018")
DATE(#2018-09-22 14:52#)
Notes

Unlike DATEPARSE, there is no need to provide a pattern as DATE automatically recognises many standard date formats. If DATE does not recognise the input, however, try using DATEPARSE and specifying the format.

MAKEDATE is another similar function, but MAKEDATE requires the input of numeric values for year, month and day.

DATEADD

Adds a specified number of date parts (months, days, etc) to the starting date.

SyntaxDATEADD(date_part, interval, date)
OutputDate
DefinitionReturns the <date> with the specified number <interval> added to the specified <date_part> of that date. For example, adding three months or 12 days to a starting date.
Example

Push out all due dates by one week

DATEADD('week', 1, [due date])

Add 280 days to the date February 20, 2021

DATEADD('day', 280, #2/20/21#) = #November 27, 2021#
NotesSupports ISO 8601 dates.

DATEDIFF

Returns the number of date parts (weeks, years, etc) between two dates.

SyntaxDATEDIFF(date_part, date1, date2, [start_of_week])
OutputInteger
DefinitionReturns the difference between <date1> and <date2n> expressed in units of <date_part>. For example, subtracting the dates someone entered and left a band to see how long they were in the band.
Example

Number of days between 25th March 1986 and 20th February 2021

DATEDIFF('day', #3/25/1986#, #2/20/2021#) = 12,751

How many months someone was in a band

DATEDIFF('month', [date joined band], [date left band])
NotesSupports ISO 8601 dates.

DATENAME

Returns the name of the specified date part as a discrete string.

SyntaxDATENAME(date_part, date, [start_of_week])
OutputString
DefinitionReturns <date_part> of <date> as a string.
Example
DATENAME('year', #3/25/1986#) = "1986"
DATENAME('month', #1986-03-25#) = "March"
Notes

Supports ISO 8601 dates.

A very similar calculation is DATEPART, which returns the value of the specified date part as a continuous integer. DATEPART can be faster because it is a numerical operation.

By changing the attributes of the calculation’s result (dimension or measure, continuous or discrete) and the date formatting, the results of DATEPART and DATENAME can be formatted to be identical.

An inverse function is DATEPARSE, which takes a string value and formats it as a date.

DATEPARSE

Returns specifically formatted strings as dates.

SyntaxDATEPARSE(date_format, date_string)
OutputDate
DefinitionThe <date_format> argument describes how the <date_string> field is arranged. Because of the variety of ways the string field can be ordered, the <date_format> must match exactly. For a full explanation, see Convert a Field to a Date Field(Link opens in a new window).
Example
DATEPARSE('yyyy-MM-dd', "1986-03-25") = #March 25, 1986#
Notes

DATE is a similar function that automatically recognises many standard date formats. DATEPARSE may be a better option if DATE does not recognise the input pattern.

MAKEDATE is another similar function, but MAKEDATE requires the input of numeric values for year, month and day.

Inverse functions, which take dates apart and return the value of their parts, are DATEPART (integer output) and DATENAME (string output).

Database limitations

DATEPARSE is available through the following connectors: non-legacy Excel and text file connections, Amazon EMR Hadoop Hive, Cloudera Hadoop, Google Sheets, Hortonworks Hadoop Hive, MapR Hadoop Hive, MySQL, Oracle, PostgreSQL and Tableau extracts. Some formats may not be available for all connections.

DATEPARSE is not supported on Hive variants. Only Denodo, Drill and Snowflake are supported.

DATEPART

Returns the name of the specified date part as an integer.

SyntaxDATEPART(date_part, date, [start_of_week])
OutputInteger
DefinitionReturns <date_part> of <date> as an integer.
Example
DATEPART('year', #1986-03-25#) = 1986
DATEPART('month', #1986-03-25#) = 3
Notes

Supports ISO 8601 dates.

A very similar calculation is DATENAME, which returns the name of the specified date part as a discrete string. DATEPART can be faster because it is a numerical operation. By changing the attributes of the field (dimension or measure, continuous or discrete) and the date formatting, the results of DATEPART and DATENAME can be formatted to be identical.

An inverse function is DATEPARSE, which takes a string value and formats it as a date.

DATETRUNC

This function can be thought of as date rounding. It takes a specific date and returns a version of that date at the desired specificity. Because every date must have a value for day, month, quarter and year, DATETRUNC sets the values as the lowest value for each date part up to the date part specified. Refer to the example for more information.

SyntaxDATETRUNC(date_part, date, [start_of_week])
OutputDate
DefinitionTruncates the <date> to the accuracy specified by the <date_part>. This function returns a new date. For example, when you truncate a date that is in the middle of the month at the month level, this function returns the first day of the month.
Example
DATETRUNC('day', #9/22/2018#) = #9/22/2018#
DATETRUNC('iso-week', #9/22/2018#) = #9/17/2018#

(the Monday of the week containing 22/09/2018)

DATETRUNC(quarter, #9/22/2018#) = #7/1/2018# 

(the first day of the quarter containing 22/09/2018)

Note: For week and iso-week, the start_of_week comes into play. ISO-weeks always start on Monday. For the locale of this example, an unspecified start_of_week means the week starts on Sunday.

Notes

Supports ISO 8601 dates.

You shouldn't use DATETRUNC to, for example, stop showing the time for a datetime field in a viz. If you want to truncate the display of a date rather than round its accuracy, adjust the formatting(Link opens in a new window).

For example, DATETRUNC('day', #5/17/2022 3:12:48 PM#), if formatted in the viz to display seconds, would display as 5/17/2022 12:00:00 AM.

DAY

Returns the day of the month (1–31) as an integer.

SyntaxDAY(date)
OutputInteger
DefinitionReturns the day of the given <date> as an integer.
Example
Day(#September 22, 2018#) = 22
NotesSee also WEEK, MONTH, QUARTER, YEAR and the ISO equivalents.

ISDATE

Checks if the string is a valid date format.

SyntaxISDATE(string)
OutputBoolean
DefinitionReturns true if a given <string> is a valid date.
Example
ISDATE(09/22/2018) = true
ISDATE(22SEP18) = false
NotesThe required argument must be a string. ISDATE cannot be used for a field with a date data type – the calculation will return an error.

ISOQUARTER

SyntaxISOQUARTER(date)
OutputInteger
DefinitionReturns the ISO8601 week-based quarter of a given <date> as an integer.
Example
ISOQUARTER(#1986-03-25#) = 1
NotesSee also ISOWEEK, ISOWEEKDAY, ISOYEAR and the non-ISO equivalents.

ISOWEEK

SyntaxISOWEEK(date)
OutputInteger
DefinitionReturns the ISO8601 week-based week of a given <date> as an integer.
Example
ISOWEEK(#1986-03-25#) = 13
NotesSee also ISOWEEKDAY, ISOQUARTER, ISOYEAR and the non-ISO equivalents.

ISOWEEKDAY

SyntaxISOWEEKDAY(date)
OutputInteger
DefinitionReturns the ISO8601 week-based weekday of a given <date> as an integer.
Example
ISOWEEKDAY(#1986-03-25#) = 2
NotesSee also ISOWEEK, ISOQUARTER, ISOYEAR and the non-ISO equivalents.

ISOYEAR

SyntaxISOYEAR(date)
OutputInteger
DefinitionReturns the ISO8601 week-based year of a given <date> as an integer.
Example
ISOYEAR(#1986-03-25#) = 1,986
NotesSee also ISOWEEK, ISOWEEKDAY, ISOQUARTER and the non-ISO equivalents.

MAKEDATE

SyntaxMAKEDATE(year, month, day)
OutputDate
DefinitionReturns a date value constructed from the specified <year>, <monthg> and <day>.
Example
MAKEDATE(1986,3,25) = #1986-03-25#
Notes

Note: Incorrectly entered values will be adjusted into a date, such as MAKEDATE(2020,4,31) = May 1, 2020 rather than returning an error that there is no 31st day of April.

Available for Tableau Data Extracts. Check for availability in other data sources.

MAKEDATE requires numerical inputs for the parts of a date. If your data is a string that should be a date, try the DATE function. DATE automatically recognises many standard date formats. If DATE does not recognise the input, try using DATEPARSE.

MAKEDATETIME

SyntaxMAKEDATETIME(date, time)
OutputDatetime
DefinitionReturns a datetime that combines a <date> and a <time>. The date can be a date, datetime or a string type. The time must be a datetime.
Example
MAKEDATETIME("1899-12-30", #07:59:00#) = #12/30/1899 7:59:00 AM#
MAKEDATETIME([Date], [Time]) = #1/1/2001 6:00:00 AM#
Notes

This function is available only for MySQL-compatible connections (which for Tableau are MySQL and Amazon Aurora).

MAKETIME is a similar function available for Tableau Data Extracts and some other data sources.

MAKETIME

SyntaxMAKETIME(hour, minute, second)
OutputDatetime
DefinitionReturns a date value constructed from the specified <hour>, <minute> and <second>.
Example
MAKETIME(14, 52, 40) = #1/1/1899 14:52:40#
Notes

Because Tableau does not support a time data type, only datetime, the output is a datetime. The date portion of the field will be 1/1/1899.

Similar function to MAKEDATETIME, which is only available for MYSQL-compatible connections.

MAX

SyntaxMAX(expression) or MAX(expr1, expr2)
OutputSame data type as the argument, or NULL if any part of the argument is null.
Definition

Returns the maximum of the two arguments, which must be of the same data type.

MAX can also be applied to a single field as an aggregation.

Example
MAX(4,7) = 7
MAX(#3/25/1986#, #2/20/2021#) = #2/20/2021#
MAX([Name]) = "Zander"
Notes

For strings

MAX is usually the value that comes last in alphabetical order.

For database data sources, the MAX string value is highest in the sort sequence defined by the database for that column.

For dates

For dates, the MAX is the most recent date. If MAX is an aggregation, the result will not have a date hierarchy. If MAX is a comparison, the result will retain the date hierarchy.

As an aggregation

MAX(expression) is an aggregate function and returns a single aggregated result. This displays as AGG(expression) in the viz.

As a comparison

MAX(expr1, expr2) compares the two values and returns a row-level value.

See also MIN.

MIN

SyntaxMIN(expression) or MIN(expr1, expr2)
OutputSame data type as the argument, or NULL if any part of the argument is null.
Definition

Returns the minimum of the two arguments, which must be of the same data type.

MIN can also be applied to a single field as an aggregation.

Example
MIN(4,7) = 4
MIN(#3/25/1986#, #2/20/2021#) = #3/25/1986#
MIN([Name]) = "Abebi"
Notes

For strings

MIN is usually the value that comes first in alphabetical order.

For database data sources, the MIN string value is lowest in the sort sequence defined by the database for that column.

For dates

For dates, the MIN is the earliest date. If MIN is an aggregation, the result will not have a date hierarchy. If MIN is a comparison, the result will retain the date hierarchy.

As an aggregation

MIN(expression) is an aggregate function and returns a single aggregated result. This displays as AGG(expression) in the viz.

As a comparison

MIN(expr1, expr2) compares the two values and returns a row-level value.

See also MAX.

MONTH

SyntaxMONTH(date)
OutputInteger
DefinitionReturns the month of the given <date> as an integer.
Example
MONTH(#1986-03-25#) = 3
NotesSee also DAY, WEEK, QUARTER, YEAR and the ISO equivalents

NOW

SyntaxNOW()
OutputDatetime
DefinitionReturns the current local system date and time.
Example
NOW() = 1986-03-25 1:08:21 PM
Notes

NOW does not take an argument.

See also TODAY, a similar calculation that returns a date instead of a datetime.

If the data source is a live connection, the system date and time could be in another time zone. For more information on how to address this, see the Knowledge Base.

QUARTER

SyntaxQUARTER(date)
OutputInteger
DefinitionReturns the quarter of the given <date> as an integer.
Example
QUARTER(#1986-03-25#) = 1
NotesSee also DAY, WEEK, MONTH, YEAR and the ISO equivalents

TODAY

SyntaxTODAY()
OutputDate
DefinitionReturns the current local system date.
Example
TODAY() = 1986-03-25
Notes

TODAY does not take an argument.

See also NOW, a similar calculation that returns a datetime instead of a date.

If the data source is a live connection, the system date could be in another time zone. For more information on how to address this, see the Knowledge Base.

WEEK

SyntaxWEEK(date)
OutputInteger
DefinitionReturns the week of the given <date> as an integer.
Example
WEEK(#1986-03-25#) = 13
NotesSee also DAY, MONTH, QUARTER, YEAR and the ISO equivalents

YEAR

SyntaxYEAR(date)
OutputInteger
DefinitionReturns the year of the given <date> as an integer.
Example
YEAR(#1986-03-25#) = 1,986
NotesSee also DAY, WEEK, MONTH, QUARTER and the ISO equivalents

The date_part argument

Many date functions in Tableau take the argument date_part, which is a string constant that tells the function what part of a date to consider, such as day, week, quarter, etc. The valid date_part values that you can use are:

date_partValues
'year'Four-digit year
'quarter'1-4
'month'1-12 or "January", "February" and so on
'dayofyear'Day of the year; 1st Jan 1, 1st Feb is 32 and so on
'day'1-31
'weekday'1-7 or "Sunday", "Monday" and so on
'week'1-52
'hour'0-23
'minute'0-59
'second'0-60
'iso-year'Four-digit ISO 8601 year
'iso-quarter'1-4
'iso-week'1-52, start of week is always Monday
'iso-weekday'1-7, start of week is always Monday

The [start_of_week] parameter

Some functions have the optional parameter [start_of_week]. The start_of_week parameter can be used to specify what day is considered the first day of the week, such as "Sunday" or "Monday". If it is omitted, the start of week is determined by the data source. See Date Properties for a Data Source.

For the examples below, 22 September is a Sunday and 24 September is a Tuesday. The DATEDIFF function is being used to calculate the weeks between these dates.

DATEDIFF('week', #2013-09-22#, #2013-09-24#, 'monday') = 1

  • Because start_of_week is 'monday', these dates are in different weeks.

DATEDIFF('week', #2013-09-22#, #2013-09-24#, 'sunday') = 0

  • Because start_of_week is 'sunday', these dates are in the same week.

The date literal (#)

Examples often use the pound symbol (#) with date expressions. This is the date literal, similar to using quotes for text strings, and it tells Tableau that the value inside the symbols is a date.

Without the date literals, dates may be interpreted as various other data types. For example:

FormatData TypeValue
'March 25, 1986'String'March 25, 1986'
#3/25/1986#Date#3/25/1986#
25/03/1986Floating decimal0.00006042
25/03/1986Integer1,958
March 25, 1986 invalid

For more information, see Literal expression syntax

Create a date calculation

Practice creating a date calculation using the Superstore sample data source.

  1. In Tableau Desktop, connect to the Sample-Superstore saved data source, which comes with Tableau.
  2. Open a worksheet.
  3. From the Data pane, under Dimensions, drag Order Date to the Rows shelf.
  4. On the Rows shelf, click the plus icon (+) on the YEAR(Order Date) field.

    QUARTER(Order Date) is added to the Rows shelf and the view updates.

  5. On the Rows shelf, click the plus icon (+) on the QUARTER(Order Date) field to drill down to MONTH(Order Date).

  6. Select Analysis > Create Calculated Field.
  7. In the calculation editor that opens, do the following:
    • Name the calculated field, Quarter Date.
    • Enter the following formula: DATETRUNC('quarter', [Order Date])
    • When finished, click OK.

      The new date calculated field appears under Dimensions in the Data pane. Just like your other fields, you can use it in one or more visualisations.

  8. From the Data pane, under Dimensions, drag Quarter Date to the Rows shelf and place it to the right of MONTH(Order Date). The visualisation updates with year values. This is because Tableau rolls date data up to the highest level of detail.
  9. On the Rows shelf, right-click YEAR(Quarter Date) and select Exact Date.
  10. On the Rows shelf, right-click YEAR(Quarter Date) again and select Discrete.

    The visualisation updates with the exact quarter date for each row in the table.

Thanks for your feedback!Your feedback has been successfully submitted. Thank you!