Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I am attempting to generate a list of working dates between start and end dates. I am getting an error, but it doesn't give me a code, can someone please point me in the direction of my error?
= Table.AddColumn(#"Changed Type1", "Dates_Test", each let
StartDate = [DA_EXPECTED_START_DATE],
EndDate = [DA_EXPECTED_END_DATE],
WorkingDays = List.Dates(StartDate, Duration.From(EndDate - StartDate) + 1, #duration(1, 0, 0, 0)),
FilteredWorkingDays = List.Select(WorkingDays, each Date.DayOfWeek(_) <> 0 and Date.DayOfWeek(_) <> 6)
in
FilteredWorkingDays)
Solved! Go to Solution.
Change Duration.From to Duration.Days
Also you can replace Date.DayOfWeek(_) <> 0 and Date.DayOfWeek(_) <> 6) with Date.DayOfWeek(_,1)<5
Hence, your code will become
= Table.AddColumn(#"Changed Type1", "Dates_Test", each let
StartDate = [DA_EXPECTED_START_DATE],
EndDate = [DA_EXPECTED_END_DATE],
WorkingDays = List.Dates(StartDate, Duration.Days(EndDate - StartDate) + 1, #duration(1, 0, 0, 0)),
FilteredWorkingDays = List.Select(WorkingDays, each Date.DayOfWeek(_,1) < 5)
in
FilteredWorkingDays)
Change Duration.From to Duration.Days
Also you can replace Date.DayOfWeek(_) <> 0 and Date.DayOfWeek(_) <> 6) with Date.DayOfWeek(_,1)<5
Hence, your code will become
= Table.AddColumn(#"Changed Type1", "Dates_Test", each let
StartDate = [DA_EXPECTED_START_DATE],
EndDate = [DA_EXPECTED_END_DATE],
WorkingDays = List.Dates(StartDate, Duration.Days(EndDate - StartDate) + 1, #duration(1, 0, 0, 0)),
FilteredWorkingDays = List.Select(WorkingDays, each Date.DayOfWeek(_,1) < 5)
in
FilteredWorkingDays)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
14 | |
14 | |
13 | |
12 | |
9 |