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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Calculate the next business day excluding holidays and weekends using Power Query

The result in place of the question mark should be May 4th.

May 1st is a public holiday

I have a holiday dim

Column date is the start date

The SLA column is the number of days you have for treatment

And the "EXPECT DATE" column should be the sum of the "DATE" plus the "SLA" column excluding "holidays" and "weekends"

 

FABRICIOFERREIR_0-1601299202121.png

 

 

Someone can help me? tks

 

1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

Hi, @Anonymous , here's a solution to your question, you may tweak the code accordingly,

 

let
    #"Holidays" = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjIwMtA1MNU1MFSK1UHimijFxgIA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Date = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Holidays,{{"Date", type date}}),
    holidays = #"Changed Type"[Date],
    
    Start = #date(2020,4,30),
    gap = 1,
    plan = Date.AddDays(Start, gap),
    DayList = List.Generate(
        () => plan,
        each List.Contains(holidays, _) or Date.DayOfWeek(_, Day.Monday) >= 5,
        each Date.AddDays(_, 1)
    ),
    NextWorkDay = Date.AddDays(List.Last(DayList), 1)??plan
in
    NextWorkDay

btw, I mark May 4 a holiday on purpose for testing functionality of the M code.

 


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

1 REPLY 1
CNENFRNL
Community Champion
Community Champion

Hi, @Anonymous , here's a solution to your question, you may tweak the code accordingly,

 

let
    #"Holidays" = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjIwMtA1MNU1MFSK1UHimijFxgIA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Date = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Holidays,{{"Date", type date}}),
    holidays = #"Changed Type"[Date],
    
    Start = #date(2020,4,30),
    gap = 1,
    plan = Date.AddDays(Start, gap),
    DayList = List.Generate(
        () => plan,
        each List.Contains(holidays, _) or Date.DayOfWeek(_, Day.Monday) >= 5,
        each Date.AddDays(_, 1)
    ),
    NextWorkDay = Date.AddDays(List.Last(DayList), 1)??plan
in
    NextWorkDay

btw, I mark May 4 a holiday on purpose for testing functionality of the M code.

 


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.

Top Solution Authors
Top Kudoed Authors