Project.Tasks property (Project)
Gets a Tasks collection representing the tasks in the project. Read-only Tasks.
Syntax
expression. Tasks
expression A variable that represents a Project object.
Example
The following example displays the name of every task in the active project.
Sub TaskNames()
Dim T As Task, Names As String
For Each T In ActiveProject.Tasks
Names = Names & T.Name & vbCrLf
Next T
MsgBox Names
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.