Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello!
I've used CALENDARAUTO() in a new table and I've obtained a date column. Now, I'd like to calculate a new column with DAX to obtain the week number ( 1 - 54 ), but with the following conditions:
1) The first day of each week should be Saturday.
2) The first week of the year should be the first full week rather than the week which contains 1st January.
I've read similar posts and tried to apply and modify the DAX code to acheive that, but I haven't succeed.
Thanks in advance for your help. I really appreciate it.
Ernesto
Solved! Go to Solution.
I used the formulas exposed in these two posts:
Week number - first full week rather than 1st January?
The formula for this new column is:
Week_number = 1 + INT(DIVIDE((Calendar[Date].[Date] - WEEKDAY(Calendar[Date].[Date],16)+1) - (DATE(year(Calendar[Date].[Date]),1,1)),7))
I used the formulas exposed in these two posts:
Week number - first full week rather than 1st January?
The formula for this new column is:
Week_number = 1 + INT(DIVIDE((Calendar[Date].[Date] - WEEKDAY(Calendar[Date].[Date],16)+1) - (DATE(year(Calendar[Date].[Date]),1,1)),7))
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
78 | |
78 | |
58 | |
36 | |
33 |
User | Count |
---|---|
95 | |
61 | |
56 | |
49 | |
41 |