Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
bml123
Post Patron
Post Patron

Get Current week in a month, number of weeks in a month in Calendar where week starts on a Tuesday

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.

2 REPLIES 2
Anonymous
Not applicable

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] )
    )
)

vpollymsft_0-1648437649562.png

 

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.

 

 

mh2587
Super User
Super User

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!




LinkedIn Icon
Muhammad Hasnain



Helpful resources

Announcements
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.