Forum Discussion
gmasta1129
3 years agoResolver I
Previous Day - Excluding Weekend
Hello,
I have a report that runs 5 days a week (excludes weekends). There is a "Run Date" column which contains the date the report was run. I would like to retreive the previous day from the run date but I am having an issue because of weekend dates.
For example, August 29th is a Monday. Run Date = 8/29/2022. The Previous Day should be Friday August 26th 2022 8/26/2022
and not Sunday August 28th 8/28/2022
What type of formula can i use for this?
Dear gmasta1129 ,
please use the below dax:
Previous_date = if( FORMAT(Sheet1[Run Date], "dddd")="Monday",Sheet1[Run Date]-3,Sheet1[Run Date]-1)let me know if it's help.
2 Replies
- ahmadibrahimbusResolver III
Dear gmasta1129 ,
please use the below dax:
Previous_date = if( FORMAT(Sheet1[Run Date], "dddd")="Monday",Sheet1[Run Date]-3,Sheet1[Run Date]-1)let me know if it's help. - gmasta1129Resolver I
Worked perfectly. Thank you for your help!