Is there a quick way to change the lag in predecessors and successors to show in days rather than hours?
I've exported from P6 and the lag appears as hours instead of days.
Thanks
Is there a quick way to change the lag in predecessors and successors to show in days rather than hours?
I've exported from P6 and the lag appears as hours instead of days.
Thanks
Be reminded that Lag Calendar must be considered:
Hi Emma,
If you are comfortable with vba, then it's easy to do with this little snippet:
Sub ChangeLagTypeHtoD()
Dim t As Task
Dim dep As TaskDependency
For Each t In ActiveProject.Tasks
If Not t Is Nothing Then
For Each dep In t.TaskDependencies
If dep.LagType = pjHours Then
dep.Lag = dep.Lag / (60 * ActiveProject.HoursPerDay) & "days"
End If
Next dep
End If
Next t
End Sub
Otherwise you may just as well change them manually - after running an autofilter for [contains "h"] in the Predecessors field.
Good luck, tom