The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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:
I´ve tried to filter the dates without values (Saturdays and Sundays), but the PREVIUOSDAY formula calculates including the weekend:
Could anyone help me?
Regards,
Andres Norona
Solved! Go to Solution.
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
) )
Hi danextian,
Yes, the variation should be between Thursday and Monday. For example, these cases could occur on Holliday days on any working day.
Regards,
AN
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?
Proud to be a Super User!
Hi danextian,
Yes, the variation should be between Thursday and Monday. For example, these cases could occur on Holliday days on any working day.
Regards,
AN
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
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
80 | |
78 | |
47 | |
40 |
User | Count |
---|---|
149 | |
115 | |
67 | |
64 | |
58 |