Flag when a task is edited

R

Rob

Is there a formula to check if a task was edited?

I want to set a flag that if reources, hours or dates change that an
enterprise
flag automatically goes off.
 
G

Gérard Ducouret

Hello Rob,
You can do that with a VBA procedure.
Use the BeforeTaskChange event in an event Class Module.
The begining of the Sub would be:

Private Sub App_ProjectBeforeTaskChange(ByVal tsk As Task, ByVal Field As
PjField, ByVal NewVal As Variant, Cancel As Boolean)
If Field = pjTaskDuration Then ... Enterprise Flag1 = True

Hope this helps,

Gérard Ducouret
 
G

Gary L. Chefetz [MVP]

Rob:

Changed by whom? Where? This functionality already exists in Project, if the
PM changes a published task and it already exists in PWA when a resource
makes an update to a task in View My Tasks page.
 

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