Hi,
I am using a formula to determine "Planned % Complete" based on start date/end date and todays date. The formula I am using is;
=(MIN(TODAY(), Finish1) - Start1 + 1) / (Finish1 - Start1 + 1)
I want to nest the following formula so that if the start date is AFTER todays date, the "Planned % Complete" will be zero;
=IF(Start1 <= TODAY(), 0, 0)
Now, I would also like to add an element that removes weekends between the start and end date using the WORKDAY function.
Any suggestions how I can use all three functions in the same cell? Or an easier way to calculate the "Planned % Complete" obtaining the same results as mentioned above?
Regards,
Mel