Don't Publish 100% completed assignments

S

ST

Hi,

Why does project pro pulbish assignment on PWA My Task view when the tasks
are 100% complete. Is the someway to configure the system so that it does
not do that? If not, what are the recommended practices?

We are using Server2007.

/Spiro Theopoulos
 
B

Ben Howard

Hi Spiro,

It's working as designed. If you don't want to see the tasks insert the
Publish column in Project Pro and set the field to No. This does not publish
the task to the My Tasks
 
L

LGroendijk

I've used the following code... works fine for me.

Private Sub Project_BeforeSave(ByVal pj As MSProject.Project)
If Not pj Is Nothing Then
Dim t As Task

For Each t In ActiveProject.Tasks
If t.PercentComplete = 100 Then
t.IsPublished = False
End If
Next
End If
End Sub
 
K

K Treston

Spiro,

Further to Ben's comment, you can also use the Close Tasks to Update under
Server Settings\Time and Task Management.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top