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
Anonymous
Not applicable

Week Calculations

Hi Team ,

 

Need help on how to calculate how many week will be there in a month. Example Month Septmber need week date like 

01/09/2019 ,07/09/2019, 13/09/2019.

 

Thanks & Regards

Shashank

1 ACCEPTED SOLUTION
v-xuding-msft
Community Support
Community Support

Hi @Anonymous ,

You could try the formulas below. The measure calculats that how many weeks in the month. If you want to get the fisrt day for per week, you could try the formula of "First day of week".

 

Week of Month = 1 + WEEKNUM ( 'Table'[Date] ) - WEEKNUM ( STARTOFMONTH ( 'Table'[Date] ) )
Measure = DISTINCTCOUNT('Table'[Week of Month])

First day of week = ('Table'[Date]-WEEKDAY('Table'[Date],1)+1)

4.PNG

 

Note:  "Week of Month" and "First day of week" are calculated columns.  I attached my sample that you can have a try.

 

Best Regards,

Xue Ding

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-xuding-msft
Community Support
Community Support

Hi @Anonymous ,

You could try the formulas below. The measure calculats that how many weeks in the month. If you want to get the fisrt day for per week, you could try the formula of "First day of week".

 

Week of Month = 1 + WEEKNUM ( 'Table'[Date] ) - WEEKNUM ( STARTOFMONTH ( 'Table'[Date] ) )
Measure = DISTINCTCOUNT('Table'[Week of Month])

First day of week = ('Table'[Date]-WEEKDAY('Table'[Date],1)+1)

4.PNG

 

Note:  "Week of Month" and "First day of week" are calculated columns.  I attached my sample that you can have a try.

 

Best Regards,

Xue Ding

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thanks working fine

Tahreem24
Super User
Super User

Hello @Anonymous ,

 Please find the DAX formula for 3 different measures:

 

  1. Start_Week = 

FORMAT(

(Table[DATE]-WEEKDAY(Table[DATE],1)

+1),

"DD-MMM-YY"

)

  1. End_Week =

FORMAT(

(Table[DATE]-WEEKDAY(Table[DATE],1)

+7),

"DD-MMM-YY"

)

  1. Week Range = Table[Start_Week]&" To "&Table[End_Week]

 

Please accept this as a solution so other can make the use of it.

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

Hi @Anonymous ,

 

If my answer helped you so please mark it as a solution so other can use it.

 

Thanks!

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

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.