R
Raj Limaye
In Task Usage view, I added a column "Baseline Work".
The sum of Baseline work of all assignments of a task must be equal to the
task.basellinework.
I found it inconsistant. For most of the Tasks, the sum of
assignment.baselinework was same as task.baselinework. However, for few tasks
(about 20%), this was not the case.
I also verified the assignment.baselinework by writing a macro as follows:
Sub test1()
Dim t As Task
Dim ts As Tasks
Dim a As Assignment
Set ts = ActiveProject.Tasks
For Each t In ts
If Not t Is Nothing Then
For Each a In t.Assignments
a.Number2 = a.BaselineWork / 480
Next a
End If
Next t
End Sub
The sum of Baseline work of all assignments of a task must be equal to the
task.basellinework.
I found it inconsistant. For most of the Tasks, the sum of
assignment.baselinework was same as task.baselinework. However, for few tasks
(about 20%), this was not the case.
I also verified the assignment.baselinework by writing a macro as follows:
Sub test1()
Dim t As Task
Dim ts As Tasks
Dim a As Assignment
Set ts = ActiveProject.Tasks
For Each t In ts
If Not t Is Nothing Then
For Each a In t.Assignments
a.Number2 = a.BaselineWork / 480
Next a
End If
Next t
End Sub