Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Project: Summary group name

Status
Not open for further replies.

hisbadbanana

IS-IT--Management
Oct 16, 2006
20
GB
In MS Project is there a way of identifying a task's Summary Name?

For example, I want the Text1 field to be [Name.Summary] & [Name]


any ideas?

 
i figured it out - can't be done withut VBA (well I couldn't do it without vba!)


Code:
Private Sub Project_Change(ByVal pj As Project)
Dim ts As Tasks
Set ts = ActiveProject.Tasks
    For Each t In ts
        If Not t Is Nothing Then
            If Not t.Summary Then t.Text11 = t.Name & " (" & t.OutlineParent.Name & ")"
        End If
    Next t
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top