CALENDAR DAX Function (Date and Time)

Returns a table with one column of all dates between StartDate and EndDate.

Syntax

CALENDAR ( <StartDate>, <EndDate> )
Parameter Attributes Description
StartDate

The start date in datetime format.

EndDate

The end date in datetime format.

Return values

Table A table with a single column.

Returns a table with a single column named “Date” containing a contiguous set of dates. The range of dates is from the specified start date to the specified end date, inclusive of those two dates.

Remarks

The CALENDAR table is useful to create a Date table.
For compatibility with DAX time intelligence functions, it is a best practice to always include an entire year in a Date table.

» 2 related articles
» 1 related function

Examples

The following formula returns a table with dates between January 1st, 2005 and December 31st, 2015.

CALENDAR (
    DATE ( 2005, 1, 1 ), 
    DATE ( 2015, 12, 31 )
)

The following expression returns the date table covering the range of dates in actual sales data and future sales forecasts.

CALENDAR (
    DATE ( YEAR ( MIN ( Sales[Date] ) ), 1, 1 ),
    DATE ( YEAR ( MAX ( Forecast[Date] ) ), 12, 31 )
)

Because a date column can be represented as an integer, CALENDAR can be used as a way to obtain a result similar to a particular call to GENERATESERIES. For example, the following expressions are equivalent, even if the former produces a table with a DateTime data type, whereas the latter returns a table with an Integer data type.

CALENDAR ( 1, 100 )

GENERATESERIES ( 1, 100, 1 )
-- CALENDAR requires to specify the boundaries, it returns a table with
-- one column (Date) including all the dates between the boundaries (included)
EVALUATE 
    CALENDAR (
        DATE ( 2022, 11, 26 ),
        DATE ( 2022, 12, 5 )
    )
ORDER BY [Date] DESC
Date
2022-12-05
2022-12-04
2022-12-03
2022-12-02
2022-12-01
2022-11-30
2022-11-29
2022-11-28
2022-11-27
2022-11-26

Related articles

Learn more about CALENDAR in the following articles:

Related functions

Other related functions are:

Last update: Apr 11, 2024   » Contribute   » Show contributors

Contributors: Alberto Ferrari, Marco Russo

Microsoft documentation: https://docs.microsoft.com/en-us/dax/calendar-function-dax

2018-2024 © SQLBI. All rights are reserved. Information coming from Microsoft documentation is property of Microsoft Corp. » Contact us   » Privacy Policy & Cookies

Context Transition

This function performs a Context Transition if called in a Row Context. Click to read more.

Row Context

This expression is executed in a Row Context. Click to read more.

Iterator

Not recommended

The use of this function is not recommended. See Remarks and Related functions for alternatives.

Not recommended

The use of this parameter is not recommended.

Deprecated

This function is deprecated. Jump to the Alternatives section to see the function to use.

Volatile

A volatile function may return a different result every time you call it, even if you provide the same arguments. Click to read more.

Deprecated

This parameter is deprecated and its use is not recommended.

DirectQuery compatibility

Limitations are placed on DAX expressions allowed in measures and calculated columns.
The state below shows the DirectQuery compatibility of the DAX function.

Contribute

Want to improve the content of CALENDAR? Did you find any issue?
Please, report it us! All submissions will be evaluated for possible updates of the content.


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.