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
erdinch
Helper I
Helper I

how to adjust week number in date dale

Hello,

I have just extended my date table so it included 2021 dates.

I used that source trigger

= List.Dates(
#date(2020,1,1) ,
365*2 ,
#duration(1,0,0,0)
)

Then I insert new column with week number using:

 

= Table.AddColumn(#"Changed Type", "Week of Year", each Date.WeekOfYear([Date]), Int64.Type)

 

The point is that in the border betweem 2020 and 2021 I have:

 

weekNo.JPG 

 

But I would like week number one to start as of 4th of Jan, 2021.

I will appreciate your advice.

1 ACCEPTED SOLUTION

@erdinch 

See it all at work in the attached file (based on the link provided earlier)

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

 

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Please look Function for ISO Year/Week number (ISO 8601)) 


NB! Pay attention to offsetindays parameter (by default it equals to zero - it means week starts on Sunday)

AlB
Super User
Super User

Hi @erdinch 

See if this can help https://community.powerbi.com/t5/Desktop/Corrigindo-n%C3%BAmero-de-semanas-no-ano/m-p/1580167

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

 

@erdinch 

or have a look at this

https://community.powerbi.com/t5/Desktop/Incorrect-week-number-at-year-end-beginning/m-p/1474033

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

Cheers 

 

SU18_powerbi_badge

@erdinch 

See it all at work in the attached file (based on the link provided earlier)

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

 

amitchandak
Super User
Super User

@erdinch , this is dax code to do that. see you can get that in power query

new column in date table

Week Start date = 'Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1
Week End date = 'Date'[Date]+ 7-1*WEEKDAY('Date'[Date],2)

min week start of year = minx(filter('Date',year([Week Start date])=earlier(year(Week Start date]))),[Week Start date])
week No = quotient(datediff([min week start of year],[date],day),7)+1
Week Start Year = minx(filter('Date',[Year] =earlier([Year])),[Week Start date])

Hello amitchandak,

bear with me I am not so good at power BI.

My date table is named "Date_table".So I tried to add column by clicking ib the three dots (more option) on the right side of the panel where are listed my existing tables. I saw an option "new column". After pressing that I recieve an empty line where I can add the DAX code.  

Drespite of the fact that I replaced  'Date' with  'Date_table' -the code was not accepted and I get some red underlines saying "parameter is not correct"

Can you please explain in more details? PLEASE.

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.