I am trying to create a formula that will represent the estimated hours per task for all resources allocated for that task
Currently:
Duration is in days
"Allocation % is 5% for the duration of the task
"Estimated Work Hrs": =((Duration11 * 8) * [Allocation %]11) 8 is reflective of hrs in a day
Since I have more than one resource I want my "Estimated Work Hrs" to reflect total for all resources working on the task
In simple math it would be
line 1: [ (8 x 8) x5% ] x 1 = estimated hours total for task
line 2: [ (1 x 8) x5% ] x 2 = estimated hours total for task
Any suggestions?