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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
RMV
Helper V
Helper V

Week of month from Calendar

Hi,

 

I created a new table and apply calendar formula to generate date:

CALENDAR(DATE(2017,01,01),DATE(2017,12,31))

 

Is there any function to show the Week of Month using dax language?

What I mean by Week of Month is for example: 1 Jun 2017 is considered as Week 1 (in month of June)

 

Regards,

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @RMV,

 

You can simple add a calculated column to calculate the week of month: (use current week number -  month start week number)

 

Week of Month = 
var currentweek=WEEKNUM([Date],1)
var startWeek=WEEKNUM(DATE([Date].[Year],[Date].[MonthNo],1),1)
return
Currentweek-startWeek+1

5.PNG

 

 

Regards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @RMV,

 

You can simple add a calculated column to calculate the week of month: (use current week number -  month start week number)

 

Week of Month = 
var currentweek=WEEKNUM([Date],1)
var startWeek=WEEKNUM(DATE([Date].[Year],[Date].[MonthNo],1),1)
return
Currentweek-startWeek+1

5.PNG

 

 

Regards,

Xiaoxin Sheng

It works! Thanks, @Anonymous!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors