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
apnorona
New Member

PREVIOUSDAY for workdays

Hi,
I´m trying to calculate a variation of a measure only for workdays (Monday to Friday). Still, the PREVIOUSDAY formula takes all the days (Monday to Sunday), and I have the problem in the variation of Monday because I don´t have data on Sunday. I need to calculate the variation of the first workday of the week with the last workday that has data in the previous week:

Daily Variation.JPG

 

 

 

 

 

 

 

I´ve tried to filter the dates without values (Saturdays and Sundays), but the PREVIUOSDAY formula calculates including the weekend:

Daily Variation filtering weekend.JPG

 

 

 

 

 

Could anyone help me?

 

Regards,

Andres Norona

 

2 ACCEPTED SOLUTIONS
zaza
Resolver III
Resolver III

Try this:

 

PreviousWorkday = 
    IF ( WEEKDAY ( MAX ( Table[Date] ), 2 ) = 7 ), MAX ( Table[Date] ) - 3,
    IF ( WEEKDAY ( MAX ( Table[Date] ), 2 ) = 6 ), MAX ( Table[Date] ) - 2,
    MAX ( Table[Date] ) - 1 
    ) )

 

 

 

View solution in original post

Hi  

 

Yes, the variation should be between Thursday and Monday. For example, these cases could occur on Holliday days on any working day.

 

Regards,

AN

View solution in original post

4 REPLIES 4
danextian
Super User
Super User

Hi @apnorona ,

 

" I need to calculate the variation of the first workday of the week with the last workday that has data in the previous week"

Does this mean that If Friday has not value, then the variation should be between Thursday and Monday?










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Hi  

 

Yes, the variation should be between Thursday and Monday. For example, these cases could occur on Holliday days on any working day.

 

Regards,

AN

zaza
Resolver III
Resolver III

Try this:

 

PreviousWorkday = 
    IF ( WEEKDAY ( MAX ( Table[Date] ), 2 ) = 7 ), MAX ( Table[Date] ) - 3,
    IF ( WEEKDAY ( MAX ( Table[Date] ), 2 ) = 6 ), MAX ( Table[Date] ) - 2,
    MAX ( Table[Date] ) - 1 
    ) )

 

 

 

Thank you, I´m going to try it.

 

AN

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.