Brian said:
I have a number of split tasks throughout my project. Is there a way to
filter on those so I can see them all.
Brian,
Unfortunately there is no field identifying split tasks. However, there
is a VBA object that can be used to identify tasks with split parts. Run
the following code and then filter on Flag1. This of course assumes
Flag1 is not already used for something else.
Sub FindSplitTasks()
For Each t In ActiveProject.Tasks
If Not t Is Nothing Then
If t.SplitParts.Count > 1 Then t.Flag3 = True
End If
Next t
End Sub
Hope this helps.
John
Project MVP