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
afk
Advocate II
Advocate II

Week number with 2 digits

Hi,

 

The weeknum formula returns the weeks 1 to 9 as single digits. Is there a way to display these as 2 digits, e.g. 01, 02....09?

 

Thanks!

1 ACCEPTED SOLUTION
afk
Advocate II
Advocate II

Looks like I've managed to solve this myself Smiley Happy

 

I used the DAX Formula " weeknumber = FORMAT(WEEKNUM([date],1),"00")  "

 

If anyone has any other better solutions, please feel free to contribute.

View solution in original post

4 REPLIES 4
afk
Advocate II
Advocate II

Looks like I've managed to solve this myself Smiley Happy

 

I used the DAX Formula " weeknumber = FORMAT(WEEKNUM([date],1),"00")  "

 

If anyone has any other better solutions, please feel free to contribute.

Anonymous
Not applicable

If your week numbers are stored as whole numbers, then:

format(if(WEEKNUM([date]<10,CONCATENATE(0,WEEKNUM([date]),WEEKNUM([date]),00)

 

that is,

 

format (<value>, <format_string>) where  

<value> = if(WEEKNUM([date]<10,CONCATENATE(0,WEEKNUM([date]),WEEKNUM([date]

and

<format_string> = 00


@afk wrote:

Looks like I've managed to solve this myself Smiley Happy

 

I used the DAX Formula " weeknumber = FORMAT(WEEKNUM([date],1),"00")  "

 

If anyone has any other better solutions, please feel free to contribute.


 

zgiersky
Frequent Visitor

You could go with additional custom column (based on your formula):

 

 

date = FORMAT(DATE(LEFT([Year-Month],4),RIGHT([Year-Month],2),1),"yyyy-mm")

hi, @afk

 

This is correct.

But you could do this directly in POWER QUERY, with a similar formula, removing the calculation from the tip.
Or use a CALENDAR table for this and standardize the dates of your dashboard.

 

Please try and test using it. And please mark the right reply as answer if your issue has been resolved, otherwise, please feel free to ask if you have any other issue.

Best Regards,
Rfranca

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.