Forum Discussion
Add X network days to start date
Hi DennisSchlein ,
I can not open the pbix link you shared, maybe you can upload it somewhere else? Like Google Drive, Onedrive or Dropbox?
Please remember not to log in to your account in Power BI Desktop when uploading pbix file.
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!
Hi
I give full access to the foler, to this onedrive folder with the sample file.
Onedrive Sample File
Thank you for the effort! 🙂
- Anonymous2 years agoNot applicable
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 TeamIf 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