Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
How can I add 3 days to TODAY() skipping the weekend?
For example:
Solved! Go to Solution.
Hi!
You can combine IF()/SWITCH() and WEEKDAY() (WEEKDAY function (DAX) - DAX | Microsoft Learn) for this. Something like:
Today + 3 =
if(
WEEKDAY( TODAY() + 3, 2) <= 2, //If weekday Mon or Tue...
TODAY() + 3, //...add 3
TODAY() + 5 //Else add 5
)
Hope this helps!
hi @TimmK
try to add a column with this:
hi @TimmK
try to add a column with this:
Hola estimado, espero me pueda apoyar, utilice esta formula:
DayPlus3 =
VAR _day = WEEKDAY([DATE],2)
RETURN
IF(
_day>=1&&_day<=2,
[DATE]+3,
[DATE]+5
)
pero cuando la fecha cae en sabado o domigo me da una fecha incorrecta, por ejemplo:
tengo la fecha 29/04/2023 + 3 dias habiles la fecha correcta debe ser "03/05/2023 " pero a mi me da un dia de mas, me da la fecha 04/05/2023, me podria apoyar para saber donde esta el error.
Hi!
You can combine IF()/SWITCH() and WEEKDAY() (WEEKDAY function (DAX) - DAX | Microsoft Learn) for this. Something like:
Today + 3 =
if(
WEEKDAY( TODAY() + 3, 2) <= 2, //If weekday Mon or Tue...
TODAY() + 3, //...add 3
TODAY() + 5 //Else add 5
)
Hope this helps!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
10 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
13 | |
12 | |
11 | |
8 |