在给定开始日期,结束日期和TODAY()的情况下,如何计算任务完成的百分比 [英] How do I calculate % of task's completion given start date, end date, and TODAY()

查看:523
本文介绍了在给定开始日期,结束日期和TODAY()的情况下,如何计算任务完成的百分比的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个开始日期,结束日期和完成百分比的栏。通过在%列中手动输入数字,代表任务的条将被阴影化。我想做的是代替表示完成百分比,而是要显示从今天到结束日期还剩多少时间。

I have a gant with start date, end date, and % complete columns. By manually entering a number in the % column the bar representing the task gets shaded. What I want to do is instead of representing % completed, I want to show how much time is left before the end date from today.

      Start        End       % Time remaining from TODAY()
i.e. 12/01/2014   03/15/2015   (End date has not yet occurred)
     12/29/2014   12/29/2014   (Task was started and finished this day)


推荐答案

假定结束日期在B列中:

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.

这篇关于在给定开始日期,结束日期和TODAY()的情况下,如何计算任务完成的百分比的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆