Please note javascript is required for full website functionality.

Blog

Power BI Blog: CALENDAR tables

24 June 2021

Welcome back to this week’s edition of the Power BI blog series. This week, we will look at dynamic calendars that we can use for our analysis.

There are several ways to make a calendar table in Power BI – notably, using the Power Query side, and by creating a DAX table. We’ve previously covered how to do it in Power Query in other blogs – this time, we’re going to talk about using the CALENDAR function to create a DAX table instead.

First of all, we need to create a new table.

We can then name the table appropriately, and use the CALENDAR function. This function has two parameters – a start date and an end date. Essentially, the CALENDAR function will create a table that fills in the days between the start and end dates.

To make this dynamic, so that it points to the start and end of our dataset, we can link this back to the MIN and MAX of our relevant date fields:

Calendar = CALENDAR(MIN(Transactions[Transaction Date]),MAX(Transactions[Transaction Date]))

From there, you can add on any additional columns you might need, such as the Year, Month, Day, and so on.

If you’re feeling particularly brave, you can try to use the CALENDARAUTO function, which will look through your dataset and try to find the appropriate dates to use:

Of course, if you happen to have birthdays of customers in your dataset, then it may end up choosing an inappropriate value as your minimum, resulting in a far larger calendar table than required.

CALENDARAUTO does give you the ability to easily set the start and end dates of a particular year using the optional FiscalYearEndMonth parameter, that will ensure that dates start and end at the start and end of the fiscal year (by default it will use calendar years, or an equivalent value of 12):

To do the equivalent using the CALENDAR function, you can use a combination of DATE and the MIN/MAX functions, like the following:

Calendar = CALENDAR(DATE(YEAR(MIN(Transactions[Transaction Date])),1,1),DATE(YEAR(MAX(Transactions[Transaction Date])),12,31))

There you have it!  Easy calendar tables that don’t require you to code in M.

In the meantime, please remember we offer training in Power BI which you can find out more about here. If you wish to catch up on past articles, you can find all of our past Power BI blogs here.

Newsletter