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
obriaincian
Resolver I
Resolver I

Power Query Custom Step to filter table for second Monday of the month not working

Hi All,

 

I have created a custom step in Power Query to filter a table (table in Filtered Rows1) where the date created is teh second Monday of the month.

 

The issue is Power Query just colors the code red in the formula bar and outputs the code rather than a filtered table

let
    Source = #"Filtered Rows1",
    FirstDayOfMonth = Date.StartOfMonth(DateTime.LocalNow()), 
    FirstDayOfWeek = Date.StartOfWeek(FirstDayOfMonth, Day.Monday),
    SecondWeekStart = Date.AddDays(FirstDayOfWeek, 7),
    SecondWeekEnd = Date.AddDays(SecondWeekStart, 6),
    FilteredTable = Table.SelectRows(Source, each [Date created] >= SecondWeekStart and [Date created] <= SecondWeekEnd) 
in
    FilteredTable
1 REPLY 1
Ahmedx
Super User
Super User

pls try this

 

let
    Source = Date,
     FirstDayOfMonth = Date.StartOfMonth(DateTime.LocalNow()), 
    FirstDayOfWeek = Date.StartOfWeek(FirstDayOfMonth, Day.Monday),
    SecondWeekStart = Date.From( Date.AddDays(FirstDayOfWeek, 7)),
    SecondWeekEnd = Date.From( Date.AddDays(SecondWeekStart, 6)),
 FilteredTable = Table.SelectRows(Source, each [Date created] >= SecondWeekStart and [Date created] <= SecondWeekEnd) 
in
    FilteredTable

 

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.