Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
I am using this formula to calculate 7 days a week =
Now what i want is to start the 7 days week calcualtion from monday. Below is what i have calcualted start day of week
need to replace 1 , 2, 3,4, 5,6 and 7 by number 1 and so on.. as these days represent 1st week. Can this be done ?
Solved! Go to Solution.
Hi @UditJ
You can create the following column
Column 2 =
VAR a =
WEEKNUM ( [Date], 2 )
VAR b =
WEEKNUM ( EOMONTH ( [Date], -1 ) + 1, 2 )
RETURN
a - b + 1
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @UditJ
You can create the following column
Column 2 =
VAR a =
WEEKNUM ( [Date], 2 )
VAR b =
WEEKNUM ( EOMONTH ( [Date], -1 ) + 1, 2 )
RETURN
a - b + 1
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.