See original critical path

K

KW

Hi all

As a project is updated, I've realised and I accept that the critical path
will change. However, given that any construction claims will have to be
based on the original critical path, short of saving a copy of the original
file before updating, is it possible to see what the original critial path
for the project was?


thanks in advance

Kevin
 
J

JackD

KW said:
Hi all

As a project is updated, I've realised and I accept that the critical path
will change. However, given that any construction claims will have to be
based on the original critical path, short of saving a copy of the
original file before updating, is it possible to see what the original
critial path for the project was?


thanks in advance

Kevin

The baseline will show the original state of the project, but won't cover
critical path. However, it is simple to write a small macro to flag all the
tasks that were on the original critical path. Something like this:

sub foo()
for each task in activeproject.tasks
if not task is nothing then
if task.critical then
task.flag1 = True
end if
end if
next task
end sub

Now you can just look at the tasks and filter for all that have flag1 set.
You can also create a special barstyle for the baseline and flag1 so the
original critical path can display in red. Search my blog for conditional
formatting for more info.
http://zo-d.com/blog
 
C

Catfish Hunter

You can create a view that only has baseline start and finish bars. Format
the bars in this view as if they were regular task and critical task are red.
Hope this helps.
 

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