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
melcrit123
Frequent Visitor

If Date is a Monday then return previous Friday and Exclude Holidays

Hello, I am looking for some help on a calculation I am doing. I just need help calculating the previous day excluding weekends and holidays. I have a date table setup with the holidays and weekends already mapped and I was using a calculation to get the previous day excluding weekends, but I do not know how to also configure it to skip holidays. Any help would be appreciated. Here is the calc I am currently using from another post.Previous Day.JPG

 

 

_PreviousDay = 
VAR _Date =
    dimDate[Date]
VAR _latestDate = _Date - 1
VAR _DD =
    SWITCH (
        WEEKDAY ( _Date ),
        2, _Date - 3,
        1, _Date - 2,
        7, _Date - 1,
        _latestDate
    )
RETURN
   _DD

 

 

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

You posted this in the Power Query board. Do you want the result in Power Query or in DAX?

 

_PreviousDay = 
VAR _Date =
    [Date]
RETURN MAXX(FILTER(dimDate,[Date]<_Date && [Holiday Or Weekend]=FALSE()),[Date])

View solution in original post

1 REPLY 1
lbendlin
Super User
Super User

You posted this in the Power Query board. Do you want the result in Power Query or in DAX?

 

_PreviousDay = 
VAR _Date =
    [Date]
RETURN MAXX(FILTER(dimDate,[Date]<_Date && [Holiday Or Weekend]=FALSE()),[Date])

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.

Top Solution Authors
Top Kudoed Authors