The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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!
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
109 | |
79 | |
72 | |
48 | |
39 |
User | Count |
---|---|
138 | |
108 | |
69 | |
64 | |
57 |