I'm trying to display a percentage based on a State Date and End Date. For example:
Cell G7 - 6/1/19 (Start Date)
Cell H7 - 8/30/19 (End Date)
With formula in I7: =IF(H7>TODAY(),(TODAY()/(H7-G7),1)
This gives me two conditions I want if the current date exceeds the end date; however, my question lies for showing a 0% if the Start Date is greater than TODAY()
For example,
Cell G7 - 6/1/19 (Start Date)
Cell H7 - 8/30/19 (End Date)
With formula in I7: =IF(H7>TODAY(),(TODAY()/(H7-G7),1)
This gives me two conditions I want if the current date exceeds the end date; however, my question lies for showing a 0% if the Start Date is greater than TODAY()
For example,
=IF(G7>TODAY(),0,)
The two conflict with each other and I would like to display
</strike>
The two conflict with each other and I would like to display
0% if the Start Date is greater than TODAY() as well as the results from this formula:
<strike>=IF(H7>TODAY(),(TODAY()/(H7-G7),1)
Thank you!!
Thank you!!
</strike>