How do I calculate % of task's completion given start date, end date, and TODAY()

丶灬走出姿态 提交于 2019-12-04 08:27:12

Assuming your end date is in column B:

=IF(TODAY()>=B2,"Done",CONCATENATE(B2-TODAY(),""))

This will show you the number of days remaining. If you want the percentage of time spent, use

=IF(TODAY()>=B2,"Done",MAX((TODAY()-A2)/MAX(B2-A2,1),0))

and format the cell as a percentage.

Here is a bit more succinct option it will show the percent completion as of the end of the current day.

=(MIN(TODAY(),B2)-A2+1)/(B2-A2+1)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!