Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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
Solved! Go to Solution.
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)
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.
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)
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.
Thanks working fine
Hello @Anonymous ,
Please find the DAX formula for 3 different measures:
FORMAT(
(Table[DATE]-WEEKDAY(Table[DATE],1)
+1),
"DD-MMM-YY"
)
FORMAT(
(Table[DATE]-WEEKDAY(Table[DATE],1)
+7),
"DD-MMM-YY"
)
Please accept this as a solution so other can make the use of it.
Hi @Anonymous ,
If my answer helped you so please mark it as a solution so other can use it.
Thanks!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 43 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 65 | |
| 30 | |
| 26 | |
| 25 |