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

Re: identify tasks in reports by Jan

Jan
Thu Nov 17 01:24:26 CST 2005

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

--
Jan De Messemaeker
Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/
+32-495-300 620
"Carlos Ortigoso" <caort@terra.com.br> schreef in bericht
news:uzs645x6FHA.808@TK2MSFTNGP09.phx.gbl...
> 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
>
>