I have two columns, one with planned start date and the next with planned end date. Is it possible to create a formula that calculates the average progression in procent?
I want to calculate the progression in procent per line (0-100%), and then calculate the average of these procents.
I can make it by adding an extra column, with the formula
=IF(TODAY()<G6,0,IF(TODAY()>H6,1,(TODAY()-G6)/(H6-G6)))
(column G is startdate and column H is enddate).
I can then get the average of this new column.
But is it possible to do this in one formula?
I tried this CSE-formula which is basicly the same as above, but with average around and entered with Ctrl+Shift+Enter. It does does not give me the correct result though:
=AVERAGE(IF(TODAY()<(Activities!$G$6:$G$500),0,IF(TODAY()>(Activities!$H$6:$H$500),1,(TODAY()-(Activities!$G$6:$G$500))/((Activities!$H$6:$H$500)-(Activities!$G$6:$G$500)))))
I am running excel 97.
I want to calculate the progression in procent per line (0-100%), and then calculate the average of these procents.
I can make it by adding an extra column, with the formula
=IF(TODAY()<G6,0,IF(TODAY()>H6,1,(TODAY()-G6)/(H6-G6)))
(column G is startdate and column H is enddate).
I can then get the average of this new column.
But is it possible to do this in one formula?
I tried this CSE-formula which is basicly the same as above, but with average around and entered with Ctrl+Shift+Enter. It does does not give me the correct result though:
=AVERAGE(IF(TODAY()<(Activities!$G$6:$G$500),0,IF(TODAY()>(Activities!$H$6:$H$500),1,(TODAY()-(Activities!$G$6:$G$500))/((Activities!$H$6:$H$500)-(Activities!$G$6:$G$500)))))
I am running excel 97.