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

Don'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.

Reply
Anonymous
Not applicable

How to exclude Weekend dates (i.e. Saturday and sunday) from a date column in M query.

Hello All, 

Need help in excluding weekend dates from a date column in power query editor.

Thanks in Advance

1 ACCEPTED SOLUTION
KNP
Super User
Super User

Here's the simple version.

See below and attached. Basically, add a DayOfWeekName column based on your date and filter from there.

let
  start = Number.From(#date(2021, 1, 1)),
  end = Number.From(#date(2021, 12, 31)),
  Source = {start .. end},
  #"Converted to Table" = Table.FromList(
    Source,
    Splitter.SplitByNothing(),
    null,
    null,
    ExtraValues.Error
  ),
  #"Changed Type" = Table.TransformColumnTypes(#"Converted to Table", {{"Column1", type date}}),
  #"Renamed Columns" = Table.RenameColumns(#"Changed Type", {{"Column1", "Date"}}),
  #"Inserted Day Name" = Table.AddColumn(
    #"Renamed Columns",
    "Day Name",
    each Date.DayOfWeekName([Date]),
    type text
  ),
  #"Filtered Rows" = Table.SelectRows(
    #"Inserted Day Name",
    each ([Day Name] <> "Saturday" and [Day Name] <> "Sunday")
  )
in
  #"Filtered Rows"

 

Have I solved your problem?
Please click Accept as Solution so I don't keep coming back to this post, oh yeah, others may find it useful also ;).
chrome-9xf-Zagzel-B

If you found this post helpful, please give Kudos.
It gives me a sense of instant gratification and, if you give me Kudos enough times, magical unicorns will appear on your screen.
If you find my signature vaguely amusing, please give Kudos.
KIfp67uy-Sr
Proud to be a Super User!PBI-Super-User-Rank-30x30-1x

View solution in original post

2 REPLIES 2
KNP
Super User
Super User

Here's the simple version.

See below and attached. Basically, add a DayOfWeekName column based on your date and filter from there.

let
  start = Number.From(#date(2021, 1, 1)),
  end = Number.From(#date(2021, 12, 31)),
  Source = {start .. end},
  #"Converted to Table" = Table.FromList(
    Source,
    Splitter.SplitByNothing(),
    null,
    null,
    ExtraValues.Error
  ),
  #"Changed Type" = Table.TransformColumnTypes(#"Converted to Table", {{"Column1", type date}}),
  #"Renamed Columns" = Table.RenameColumns(#"Changed Type", {{"Column1", "Date"}}),
  #"Inserted Day Name" = Table.AddColumn(
    #"Renamed Columns",
    "Day Name",
    each Date.DayOfWeekName([Date]),
    type text
  ),
  #"Filtered Rows" = Table.SelectRows(
    #"Inserted Day Name",
    each ([Day Name] <> "Saturday" and [Day Name] <> "Sunday")
  )
in
  #"Filtered Rows"

 

Have I solved your problem?
Please click Accept as Solution so I don't keep coming back to this post, oh yeah, others may find it useful also ;).
chrome-9xf-Zagzel-B

If you found this post helpful, please give Kudos.
It gives me a sense of instant gratification and, if you give me Kudos enough times, magical unicorns will appear on your screen.
If you find my signature vaguely amusing, please give Kudos.
KIfp67uy-Sr
Proud to be a Super User!PBI-Super-User-Rank-30x30-1x
mhossain
Solution Sage
Solution Sage

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! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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