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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
bernate
Advocate I
Advocate I

Power Query Custom Column nth Day of Month

Hello, I am trying to create a custom column in Power Query that would display the date of the 2nd Monday in the month based on DateTime.LocalNow.

 

I think it will use Date.Year = DateTime.LocalNow, Date.Month = DateTime.LocalNow, Date.DayOfWeek = 1, and Date.WeekOfMonth = 2 but I'm not sure how to piece it all together. 

1 ACCEPTED SOLUTION
ppm1
Solution Sage
Solution Sage

Here's one way to do it.

 

= List.Select (List.Dates(Date.From(Date.StartOfMonth(DateTime.LocalNow())), 14, #duration(1,0,0,0)), each Date.DayOfWeekName(_)= "Monday"){1}

 

Pat

Microsoft Employee

View solution in original post

2 REPLIES 2
Ahmedx
Super User
Super User

pls try this

Screen Capture #926.png

 

let
  Lists= List.Select(
    List.Dates(Date.From(Date.StartOfMonth(DateTime.LocalNow())), 14, #duration(1, 0, 0, 0)), 
    (x) => Date.DayOfWeek(x) = 0){1}
in
  Lists

 

ppm1
Solution Sage
Solution Sage

Here's one way to do it.

 

= List.Select (List.Dates(Date.From(Date.StartOfMonth(DateTime.LocalNow())), 14, #duration(1,0,0,0)), each Date.DayOfWeekName(_)= "Monday"){1}

 

Pat

Microsoft Employee

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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