Ok Heather I think I see what you are after,
DEFINE
ColumnA: TaskHours -- values (in hours) of each task, in to-be-
completed order
ColumnB: Days -- a real number of days required to complete the task
in A
ColumnC: Done -- the actual date when the task will be completed
WHERE
ColumnA is your hours data A3=36.57, formatted 0.00
ColumnB is the formula B3=A3/MHPD, formatted 0.0
ColumnC is the formula C3=C2+B3, formatted mmmm d, yyyy
OVERALL
Row1 is your column headings ={"Hours","Days","Done"} // this
represents the three cells, A1, B1, C1
Row2 is a record indicating the start of your calendar {"","",
6/28/2007} // A2, B2, C2
Row3 is your first task ={36.57,=A3/MHPD,=C2+B3} // A3, B3, C3
Row4 is your second task ={20.91,=A4/MHPD,=C3+B4} // ...
Row5 ...
Row6...
RESULT
Hours Days Done
- - June 28, 2007
36.57 1.3 June 29, 2007
20.91 0.7 June 30, 2007
14.98 0.5 June 30, 2007
32.00 1.1 July 1, 2007
4.00 0.1 July 1, 2007
15.20 0.5 July 2, 2007
99.00 3.5 July 5, 2007
Is this closer to what you had hoped for?
Brian Herbert Withun
|