Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello,
I have data that I need to present by month and then by week. My issue is that the same week appears in two months. Is there any solution to add one week only to one month (I.e., add a week to the month with more days in that week)?
I.e. in the image below, I would like the whole Week 39 to belong to September.
Solved! Go to Solution.
HI @Anonymous
You can use this Formula in DAX to get the first date of the week besides all dates of the same week.
Startdate of week = [Date] + ((7- WEEKDAY([Date];2))-6)
Then use this to extract the month.
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
@Anonymous
I'm always happy to help 🙂
HI @Anonymous
You can use this Formula in DAX to get the first date of the week besides all dates of the same week.
Startdate of week = [Date] + ((7- WEEKDAY([Date];2))-6)
Then use this to extract the month.
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly