M
Monica
In searching for an answer in this forum, I came across the code below.
Whenever I print out my to-do list, it only shows the original start date and
final finish date of a task. I'd like to see the interim start and end dates
of the split tasks.
Could this code be modified to do what I need?
Sub splits()
For Each Task In ActiveProject.Tasks
If Task.SplitParts.Count > 1 Then
For Each SplitPart In Task.SplitParts
If SplitPart.Finish >= Date And SplitPart.Start <= Date Then
MsgBox Task.Name & " is currently running"
End If
Next SplitPart
End If
Next Task
End Sub
Monica
Whenever I print out my to-do list, it only shows the original start date and
final finish date of a task. I'd like to see the interim start and end dates
of the split tasks.
Could this code be modified to do what I need?
Sub splits()
For Each Task In ActiveProject.Tasks
If Task.SplitParts.Count > 1 Then
For Each SplitPart In Task.SplitParts
If SplitPart.Finish >= Date And SplitPart.Start <= Date Then
MsgBox Task.Name & " is currently running"
End If
Next SplitPart
End If
Next Task
End Sub
Monica