showing duration in edays

C

cathie

I am working in microsoft project 98. I would like to show the
durations in elapsed (real time) days, not working days. Is there a
way to do this?

Thanks!
 
G

Gérard Ducouret

Hello Cathie,

Just add an "e" before the "d" of days or befor the "w" for weeks :
ex : 20ed for concrete harden

Gérard Ducouret
 
J

JackD

Gerard,

This will only change the duration of the tasks, not the way they are
displayed.
In project 98 the only way to do this is with a bit of VBA code. In Project
2000 and later a calculated field would be effective.
This is the code that I would use.

sub setText5toDateDiff()
for each task in activeproject.tasks
task.Text5 = DateDiff("d", task.start, task.finish)
next task
end sub
 
G

Gérard Ducouret

Hi Jack,

Your are right, I misunderstood the question !
Thanks for the remark.

Gérard Ducouret
 

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