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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
pmbaranski
Frequent Visitor

Embedding a Case in advanced editor

Hi all,

 

I am trying to modify the below M code to also handle a case where if a column "PrevClose" is True then it will be displayed regardless of what VarToday is.

 

 

    #"Filtered Rows" = Table.SelectRows(
            #"Removed Columns", 
            let
                varToday = DateTime.Date(DateTime.LocalNow()),
                varLastDay = if Date.DayOfWeek(varToday) <= 2 then Date.AddDays(varToday, 3) else 
                if Date.DayOfWeek(varToday) >= 3 then Date.AddDays(varToday, 5) else 
                Date.AddDays(varToday, 1)
            in
            each [StartDate] <= varLastDay 
            ),

 

 

 

My first though would be to add an OR statement like the below, but it is not behaving as expected.

 

 

 each [StartDate] <= varLastDay or [PrevClose] ="True"

 

 

 The end goal of this is to display all jobs due to begin within the next 3 days, including jobs starting at any point in the future if the PrevClose is True. 

1 ACCEPTED SOLUTION
pmbaranski
Frequent Visitor

If anyone else is curious, the way i accomplished this is by adding a custom conditional column where PrevClose being True is equal to 1, and then inserting the OR statement like below; 

    #"Filtered Rows" = Table.SelectRows(
            #"Added Conditional Column", 
            let
                varToday = DateTime.Date(DateTime.LocalNow()),
                varLastDay = if Date.DayOfWeek(varToday) <= 2 then Date.AddDays(varToday, 3) else if Date.DayOfWeek(varToday) >= 3 then Date.AddDays(varToday, 5) else Date.AddDays(varToday, 1)
            in
            each [StartDate] <= varLastDay or [Custom] = 1),

View solution in original post

1 REPLY 1
pmbaranski
Frequent Visitor

If anyone else is curious, the way i accomplished this is by adding a custom conditional column where PrevClose being True is equal to 1, and then inserting the OR statement like below; 

    #"Filtered Rows" = Table.SelectRows(
            #"Added Conditional Column", 
            let
                varToday = DateTime.Date(DateTime.LocalNow()),
                varLastDay = if Date.DayOfWeek(varToday) <= 2 then Date.AddDays(varToday, 3) else if Date.DayOfWeek(varToday) >= 3 then Date.AddDays(varToday, 5) else Date.AddDays(varToday, 1)
            in
            each [StartDate] <= varLastDay or [Custom] = 1),

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors
Top Kudoed Authors