Forum Discussion
Add X network days to start date
Hi
I give full access to the foler, to this onedrive folder with the sample file.
Onedrive Sample File
Thank you for the effort! 🙂
Hi DennisSchlein ,
Please try this new syntax:
End Date =
VAR _date = DATE(YEAR('sample'[CMR_Close]),MONTH('sample'[CMR_Close]),DAY('sample'[CMR_Close])+'sample'[E2E])
VAR _dateadd2 = DATE(YEAR('sample'[CMR_Close]),MONTH('sample'[CMR_Close]),DAY('sample'[CMR_Close])+'sample'[E2E])+2
RETURN
IF(WEEKDAY(_date,2)IN{6,7},_dateadd2,_date)
The visual effect of the page is as follows:
pbix file is attached.
If you have any further questions please feel free to contact me.
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
- DennisSchlein2 years ago
Helper III
Hi Anonymous
It's close, but there are some odd ones. As shows in the picture the same startdate with 2 different E2E values returns the same date?
Thank you for the effort