March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I have a Calendar table and I want to add current week in a month, number of weeks in a month columns to my Calendar table.
My week starts on a Tuesday. How do I achieve that?
Thanks.
Hi @bml123 ,
Please refer to my pbix file to see if it helps you.
Create a column.
Column =
CALCULATE (
DISTINCTCOUNT ( 'table'[WEE] ),
FILTER (
'table',
'table'[Co_year] = EARLIER ( 'table'[Co_year] )
&& 'table'[_month] = EARLIER ( 'table'[_month] )
)
)
If I have misunderstood your meaning, please provide your pbix file without privacy information and desired output.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
weekinmonth = 1 + WEEKNUM ( 'Calenda'[Date] )-WEEKNUM( STARTOFMONTH ('Calenda'[Dat]))
currentWeek = Max(weekinmonth)
// Make two calculated columns
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
91 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |