converted PowerProject programme mixed duration formats

Member for

18 years 11 months

Andrew,

If you are running MSP 2010+ and are comfortable with vba, you can drop this into a module and run it:

Sub DurationDays()

    Dim t As Task

    For Each t In ActiveProject.Tasks

        t.Duration = Application.DurationFormat(t.Duration, pjDays)

    Next t

End Sub

 

(Method is supposedly different with earlier versions, but I have no way to test.)

Otherwise, you may be stuck with manually changing the durations, perhaps with a little clicking and dragging.

Good luck, tom