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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mb0307
Responsive Resident
Responsive Resident

Week offset in Power Query

Hi all,

 

I have this measure in DAX which works absolutely fine.   I want this to be in Power Query, please help:

Week Offset = 
Var StartOfWeek = 'Calendar'[Date] - WEEKDAY( 'Calendar'[Date], 2)+1
Var StartOfCurrentWeek = TODAY() - WEEKDAY(TODAY(), 2)+1
Return (StartOfWeek - StartOfCurrentWeek)/7

 

Thanks much 

1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

Hi @mb0307 

 

Add a Custom column with this code in Power Query:

(Date.StartOfWeek([Date])-Date.StartOfWeek(DateTime.Date(DateTime.LocalNow())))/7

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!!

 

View solution in original post

6 REPLIES 6
peifc75
Frequent Visitor

I have looked for this week offset everywhere. I was having a hard time figuring how to set it up. Thank you. Your solution really helped.

Anonymous
Not applicable

Great solution. To set the right datatype in one line use this.

= Table.AddColumn(Previous_M_Query_Step, "Name_Column", each
(Number.From((Date.StartOfWeek([Datum])-Date.StartOfWeek([Huidige_Datum]))/7)),Int64.Type)
VahidDM
Super User
Super User

Hi @mb0307 

 

Add a Custom column with this code in Power Query:

(Date.StartOfWeek([Date])-Date.StartOfWeek(DateTime.Date(DateTime.LocalNow())))/7

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!!

 

Excellent solution, do you know how to change the number to be a whole number all within the same formula? Just to take out the the time zeros from the number

romoguy15_0-1652910021886.png

 

romoguy15_1-1652910034268.png

 

nevermind, i figured out. Was simple. Just add a data type in the custom column section.

mb0307
Responsive Resident
Responsive Resident

Worked perfectly.  Thanks

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.