There are some columns that will be used to manage my project, "% completion", "Start Date","End Date", "Duration","Today".
Now, our tasks show their completion percentage and I can see in the Gantt Chart how far the tasks run in the entire time and some of tasks seems like a bit delay from today. Therefore, I want to set a condition to show which tasks are delay from today. I use "% completion(percentage)" * "Duration" to convert the completion percentage to days.
For example, 9%*123 days= 11.07 days, which means the task runs 11.07 days within 123 days.
Then, I add the "Start Date" with the previous result. And thus I can compare this result with Today's date.
For Example, 2017/4/10+11.07 days=2017/4/21
However, this result will contains non-working days. How should I do if I only want workdays when the days add to the date? or if there is any other solution for this situation?