how do I display parent task name in Msproject task sheet

J

Jan De Messemaeker

Hi,

Pity you are not a developer (but good you are in the developer newsgroup);
what you are looking for can only be done through a very very tiny
development, for instance this macro:

Sub ParName
Dim job as task
for each job in activeproject.tasks
if not job is nothing then
if job.outlinelevel>1 then
job.text1=job.outlineparent.name
end if
end if
next job
end sub

Hope this helps
 
N

not-a-Developer

Thanks so much, Jan. I used your routine and assigned that value to a text
field. It works like a charm.

not-a-developer
 

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