Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello.
1) I got this Dax to create a Calendar table:
Solved! Go to Solution.
Hi @Anonymous ,
If I understand correctly, the issue is that you want to add week to the calendar and modify the start dates. Please try the following methods and check if they can solve your problem:
1.Add a new column to the table.
Calendar =
ADDCOLUMNS(
CALENDAR(DATE(2022,1,31), DATE(2024,12,31)),
"Year", YEAR([Date]),
"Week", WEEKNUM([Date], 2)
)
2.Modify the start month.
Calendar =
ADDCOLUMNS(
CALENDAR(DATE(YEAR(TODAY()) - 1, 7, 1), DATE(YEAR(TODAY()), 6, 30)),
"Year", YEAR([Date]),
"Week", WEEKNUM([Date], 2)
)
Best Regards,
Wisdom Wu
Hi @Anonymous ,
If I understand correctly, the issue is that you want to add week to the calendar and modify the start dates. Please try the following methods and check if they can solve your problem:
1.Add a new column to the table.
Calendar =
ADDCOLUMNS(
CALENDAR(DATE(2022,1,31), DATE(2024,12,31)),
"Year", YEAR([Date]),
"Week", WEEKNUM([Date], 2)
)
2.Modify the start month.
Calendar =
ADDCOLUMNS(
CALENDAR(DATE(YEAR(TODAY()) - 1, 7, 1), DATE(YEAR(TODAY()), 6, 30)),
"Year", YEAR([Date]),
"Week", WEEKNUM([Date], 2)
)
Best Regards,
Wisdom Wu
1. WEEKNUM
2. You would do that manually as you already showed.
General advice: Any custom calendar (especially with fiscal weeks) is better created and maintained outside of Power BI, for example as an Excel file on a SharePoint.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.