H
Hernandezz
Hi,
I've created a basic code to detect expressions in tasks' names. I
would need now to do the rollup to the summary tasks, but the problem
is that I also wanted to evaluate/detect the expressions in the
summary tasks.
Are you aware if there's the possibility to do the rollup in vba, so
that I can also test the summary tasks?
I don't Know use rollup in VBA. Thanks
My code:
**************************
Dim tsk As Task
For Each tsk In ActiveProject.Tasks
If tsk.Name Like "*work*" Then
tsk.Flag1 = False
Else
tsk.Flag1 = True
End If
Next tsk
***************************
I've created a basic code to detect expressions in tasks' names. I
would need now to do the rollup to the summary tasks, but the problem
is that I also wanted to evaluate/detect the expressions in the
summary tasks.
Are you aware if there's the possibility to do the rollup in vba, so
that I can also test the summary tasks?
I don't Know use rollup in VBA. Thanks
My code:
**************************
Dim tsk As Task
For Each tsk In ActiveProject.Tasks
If tsk.Name Like "*work*" Then
tsk.Flag1 = False
Else
tsk.Flag1 = True
End If
Next tsk
***************************