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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
jderekc
Helper IV
Helper IV

DAX formula to show week of the month, not week of the year

Hi all,

 

I've been browsing the internet for ways to show the current week of any given month but all I've come across is week number of the year.  Is it possible to show week of the month?  For instance, instead of week 31/32, it would be week 1 of August.  This may pose a problem if weeks carryover from one month to another though.  See my screenshot below for how it currently looks.  Also, my existing DAX query is also below:

 

daxweeks.PNG

 

DAX formula:

Week = " Week " & WEEKNUM(VendDisplay[DateCreated], 2) & " - " & FORMAT(VendDisplay[DateCreated], "MMMM")

Any help is appreciated as always.  Thanks!

 

Regards,

Derek

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @jderekc,

 

Try this column:

 

Week = " Week " & 1 + WEEKNUM ( VendDisplay[DateCreated] ) – WEEKNUM ( STARTOFMONTH ( VendDisplay[DateCreated] ) ) & " - " FORMAT(VendDisplay[DateCreated], "MMM")

If not works, my recomendation is to use a Calendar table linked to VendDisplay[DateCreated], and then change VendDisplay[DateCreated] to Calendar[Date] in this formula.

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Hi @jderekc,

 

Try this column:

 

Week = " Week " & 1 + WEEKNUM ( VendDisplay[DateCreated] ) – WEEKNUM ( STARTOFMONTH ( VendDisplay[DateCreated] ) ) & " - " FORMAT(VendDisplay[DateCreated], "MMM")

If not works, my recomendation is to use a Calendar table linked to VendDisplay[DateCreated], and then change VendDisplay[DateCreated] to Calendar[Date] in this formula.

Anonymous
Not applicable

This is not a DAX! This is magic! Amazing!
Anonymous
Not applicable

@jderekc 

Can you please provide the solution here.

You are a genius, @Anonymous!  I did it and now my bar chart returns "Week 1 - Aug", "Week 2 - Aug", et cetera.  I did have to reformat the DAX formula just a little bit because it gave me an issue that completely failed its execution, but it was just a minor tweak.  Thanks so much!

 

Regards,

Derek

Anonymous
Not applicable

Its not working correctly...

https://1drv.ms/u/s!Aon2AsIzlG3tiyp74f_tQlYQaFbc

 

It was missing an &. I adjusted it below and it worked fantatstic for me. 

 

Week = "Week" & 1 + WEEKNUM(DateDimension[Date]) - WEEKNUM(STARTOFMONTH(DateDimension[Date])) & " - " & FORMAT(DateDimension[Date], "MMM")

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.