Task Summary Name field in Task Views (MSP2007)

Hi,

I'm trying to create a view showing tasks that are in work or due to start over the next three months, but leaving the summary tasks in makes the view quite confusing. I am trying to show the summary task name in a separate filed alongside the task name. Currently, the solution I have is to use a test field and manually copy the summary task names into it.

However, just wondering if it is possible to make the "Task Summary Name" field available in the Task Views? In MSP2007, it appears to be only available in the Resource Views.

Many thanks.

E
Evgeny Z. 👤 Member for 18 years 4 months

Tony,

I just had few minutes free and has written such a Macro.

I have tested it in MS Project 2003 and works. It is ready to use (just copy and paste it to the right place)

=================================================

Sub SetSummaryTask()

' This function sets the Text1 field of every task

' to a name of it's immediate parent

Dim tsks As Tasks

Dim t As Task

Set tsks = ActiveProject.Tasks

 

For Each t In tsks

If Not t Is Nothing Then

t.Text1 = t.OutlineParent.Name

End If

Next t

End Sub

=================================================

T
Tony McClennon 👤 Member for 23 years 6 months

Thanks for the link - will give it a try and fingers crossed I can make it work!!

Forum Sponsor

Top Posters

Julian Pegg
1 posts
Peter Nagy
2 posts
Raymund de Laza
17 posts
Syed_Asad
0 posts
Tony Greyvenstein
0 posts
Ahmed Al-Jubouri
13 posts
Umar Alvi
3 posts
Sibusiso Mahlalela
0 posts
Michael Samanyayi
3 posts
Simon Gumede
0 posts