Task.Critical property (Project)
True if the task is on the critical path. Read-only Boolean.
Syntax
expression. Critical
expression A variable that represents a Task object.
Example
The following example sets the highest priority for critical tasks in the active project.
Sub MakeCriticalTasksHighestPriority()
Dim T As Task ' Task object used in For Each loop
For Each T In ActiveProject.Tasks
If T.Critical Then T.Priority = pjPriorityHighest
Next T
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.