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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Power Query and DAX produce different week numbers for the same date

Hi community,

 

For at least the following date power query and DAX produce different week numbers:

date  weeknum_pq  weeknum_dax  
Sunday, 4 September 2022  37  36  

 

Weeknum_pq was produced by using the add column -> 'week of year' function

 

Weeknum_dax was produced by using:

weeknum_dax =
   WEEKNUM('table1'[date])

 

Is anyone experiencing the same issue? Or am I missing something in the way DAX and Power Query tackle week numbers, I could not find anything online that related to this issue.

 

Thanks in advance.

1 ACCEPTED SOLUTION
tackytechtom
Super User
Super User

Hi @Anonymous ,

 

Have you tried playing around with the <return_type> option of the DAX formular WEEKNUM?

WEEKNUM function (DAX) - DAX | Microsoft Docs

 

For instance, it could be that your DAX formular uses Monday as the first day of week, while your Power Query uses Sunday.

 

Also, did you use the Date.WeekOfYear function in PQ? Here, there are also some settings that you can tweak to make them align:

Date.WeekOfYear - PowerQuery M | Microsoft Docs

 

Lastly, I believe in some cultures the first week of the year always falls on the first Monday and in other cultures the first week is determined by the first Thursday (ISO 8601). This can also be confusing sometimes.

 

Hope this helps!

 

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

View solution in original post

1 REPLY 1
tackytechtom
Super User
Super User

Hi @Anonymous ,

 

Have you tried playing around with the <return_type> option of the DAX formular WEEKNUM?

WEEKNUM function (DAX) - DAX | Microsoft Docs

 

For instance, it could be that your DAX formular uses Monday as the first day of week, while your Power Query uses Sunday.

 

Also, did you use the Date.WeekOfYear function in PQ? Here, there are also some settings that you can tweak to make them align:

Date.WeekOfYear - PowerQuery M | Microsoft Docs

 

Lastly, I believe in some cultures the first week of the year always falls on the first Monday and in other cultures the first week is determined by the first Thursday (ISO 8601). This can also be confusing sometimes.

 

Hope this helps!

 

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors