Filter on Split Tasks

B

Brian

I have a number of split tasks throughout my project. Is there a way to
filter on those so I can see them all.
 
J

John

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top