Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi all,
How do I create a DAX table which has the columns Year, Month and Working Days (in the month)?
Thanks
Solved! Go to Solution.
@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}
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
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?
@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}
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
104 | |
75 | |
46 | |
39 | |
33 |
User | Count |
---|---|
165 | |
90 | |
66 | |
46 | |
43 |