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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
snamhoang
New Member

Create Week column starting from Tuesday and ending next Tuesday

Hi guys, 
I am trying to create a week column (displaying week number) which starts from Tuesday and ends next Tuesday.
Any suggestion?
I used Weeknum 21 but it starts from Mon, not Tue.

 

Thanks a lot

1 ACCEPTED SOLUTION
Phil_Seamark
Microsoft Employee
Microsoft Employee

Hi @snamhoang

 

Please add this calculated column to your Calendar table

 

Week Starting Tuesday = 
var offset = switch(FORMAT('Dates'[Date],"DDD"),
    "Tue",0,
    "Wed",-1,
    "thu",-2,
    "Fri",-3,
    "Sat",-4,
    "Sun",-5,
    "Mon",-6
    ,0)
Return DATEADD('Dates'[Date],offset,DAY)

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

2 REPLIES 2
Phil_Seamark
Microsoft Employee
Microsoft Employee

Hi @snamhoang

 

Please add this calculated column to your Calendar table

 

Week Starting Tuesday = 
var offset = switch(FORMAT('Dates'[Date],"DDD"),
    "Tue",0,
    "Wed",-1,
    "thu",-2,
    "Fri",-3,
    "Sat",-4,
    "Sun",-5,
    "Mon",-6
    ,0)
Return DATEADD('Dates'[Date],offset,DAY)

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

GilbertQ
Super User
Super User

Hi @snamhoang,

 

What I would do is to suggest creating a new column in the Query Editor.

 

In doing that you can easily create it in your Date table, and from there you could then create your weeks also based off your Week Number column?





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.