L
lamby74
Jack - I love your code - I am finding it is making my life easier as far as
MSP is concerned. This is a piece of your code that moves all selected tasks
out a week:
Sub AddAWeekToMe()
For Each Task In ActiveSelection.Tasks
If Not Task.ConstraintDate = "NA" Then
Task.ConstraintDate = Task.ConstraintDate + 7
Else: Task.ConstraintDate = Now()
End If
Next Task
End Sub
Does anyone know if there is a way to add code to this so that any
accidentally un-selected dependencies (successors) will move with the
selected tasks? i want it to automatically shove out (or in, depending on if
using add a week, subtract a week, etc) successors?
Thanks - Lamby
MSP is concerned. This is a piece of your code that moves all selected tasks
out a week:
Sub AddAWeekToMe()
For Each Task In ActiveSelection.Tasks
If Not Task.ConstraintDate = "NA" Then
Task.ConstraintDate = Task.ConstraintDate + 7
Else: Task.ConstraintDate = Now()
End If
Next Task
End Sub
Does anyone know if there is a way to add code to this so that any
accidentally un-selected dependencies (successors) will move with the
selected tasks? i want it to automatically shove out (or in, depending on if
using add a week, subtract a week, etc) successors?
Thanks - Lamby