Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
HenryJS
Post Prodigy
Post Prodigy

Calendar Table

Hi all,

 

How do I create a DAX table which has the columns Year, Month and Working Days (in the month)?

 

Thanks

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@HenryJS 

You can create a calendar table as follows:

Calendar = 
ADDCOLUMNS(
    CALENDAR("01/01/2021", "31/12/2021"),
    "Year", YEAR([Date]),
    "Month", Month([Date]),
    "Working Day", WEEKDAY([Date],2) IN {1,2,3,4,5} 
)

Fowmy_0-1621866802738.png

 




Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

2 REPLIES 2
MichielvS
Frequent Visitor

I have a report with tens of dates in it, in different tables. I cannot connect these (joined) tables to one calendar-table. Should I create tens of calendar-tables? That seems a bit too much of a good thing, doens't it? What is the best practise in this case?

Fowmy
Super User
Super User

@HenryJS 

You can create a calendar table as follows:

Calendar = 
ADDCOLUMNS(
    CALENDAR("01/01/2021", "31/12/2021"),
    "Year", YEAR([Date]),
    "Month", Month([Date]),
    "Working Day", WEEKDAY([Date],2) IN {1,2,3,4,5} 
)

Fowmy_0-1621866802738.png

 




Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.