- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
DAX for subtracting number of days
Hello -
Anyone know if there is a DAX formula that can subtract a specific number of working days from a date given? So lets says date is today 9/26/23 and I need to subtract 7 business days from that date which is 9/18/23. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can use the following dax measure
SubtractWorkingDays = VAR StartDate = TODAY() // Replace with your specific date
VAR NumDaysToSubtract = 7 // Replace with the number of business days to subtract
VAR CalendarTable = CALENDAR(StartDate - NumDaysToSubtract, StartDate)
VAR WorkingDaysTable = FILTER(CalendarTable, WEEKDAY([Date], 2) <= 5)
RETURN MAXX(WorkingDaysTable, [Date])
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Do I need to make a working days calendar for this dax? Slightly new at using so trying to understand. Thank you!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Here is the formula I created but in the subtract working days column it is still giving me the same date rather than prior 7 business days before. Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
05-06-2024 10:54 AM | |||
08-21-2024 07:28 AM | |||
10-14-2024 10:08 AM | |||
12-13-2023 09:26 AM | |||
07-09-2024 11:39 PM |
User | Count |
---|---|
14 | |
14 | |
11 | |
11 | |
8 |