identify tasks in reports

C

Carlos Ortigoso

Hi, friends.

I have several tasks who has same name/description, but they are in
different summary tasks. I need to generate a report with those tasks, but I
don't want the full structure of the project. I need only the tasks and, in
each record, a field with the name of the summary related to each task.

Is it possible?

Thanks,

Carlos
 
J

Jan De Messemaeker

Hi,

Paste this macro in a module and run it

Sub SumNames
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


HTH
 

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