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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
srinival
Helper I
Helper I

Custom Calendar (My Month should be from 2nd Week to 2nd Week)

Hi All,

 

I want to develop a Custom Calendar where the first day of the Month should be 2nd Monday and Last day should 2nd Sunday of the Month.

 

I am not clear on how to arrive at this solution, any idea's in this direction will help me.

 

Regards

Srini

3 REPLIES 3
srinival
Helper I
Helper I

Hi Amit,

 

My Requirement is something Like this, we need to define enter year calendar for next 3 years. And our 1st Day of the Month will 2nd Monday and should end by 2nd Sunday of Next Month.

 

And we want to have this calendar for 2021,2022,2033 and 2024.

 

Maybe My requierment was not clearly projected earlier.

 

Your inputs is highly appreciated.

 

Regards

Sri

@srinival , Try like

Date = 
var _year = 2018
return 
Addcolumns(calendar(date(_year,01,01), date(_year,12,31) )
, "Start Of Month",var _st = eomonth([Date], -1) +1
    Var _Second  = _st +-1*WEEKDAY(_st ,2)+8 
    return
    _Second 
, "End Of Month",var _st = eomonth([Date], 0) +1
    Var _Second  = _st +-1*WEEKDAY(_st ,2)+7 
    return
    _Second 
, "Week Start date" , [Date]+-1*WEEKDAY([Date],2)+1 
, "Year", year([date])
, "Month Year", format([date],"mmm-yyyy") 
, "Month year sort", year([date])*100 + month([date])
, "Month",FORMAT([Date],"mmmm")
, "Month sort", month([DAte])
, "Weekday", FORMAT([Date], "ddd")
)
Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
amitchandak
Super User
Super User

@srinival ,

 

Start of Month =

var _st = eomonth([Date], -1) +1

Var _Second  = _st +-1*WEEKDAY(_st ,2)+1  + 14

return

_Second 

 

 

End of Month =

var _st = eomonth([Date], 0) +1

Var _Second  = _st +-1*WEEKDAY(_st ,2)+1  + 13

return

_Second 

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Top Kudoed Authors