C,
There are several ways to add a "fudge factor" to estimated Durations.
If there are only a few tasks you might want to simply make the change
manually. Another method would be to copy the Duration field into Excel,
eliminate the "d" and apply the factor to the data. Then copy the result
back to the Duration field in Project. That takes a little more effort
but will work well for a large number of tasks. If I were doing it
myself, I would use a simple VBA macro such as the one below. With a few
minor modifications, it can be used on the whole file or just for
selected tasks.
Sub FudgeDur()
For Each t In ActiveProject.Tasks
If Not t Is Nothing Then
If t.Summary <> True Then
t.Duration = t.Duration * 1.1
End If
End If
Next t
End Sub
Hope this helps.
John