Resource.Level Method

Project Developer Reference

Levels a resource.

Syntax

expression.Level

expression   A variable that represents a Resource object.

Example
The following example levels the resources of the selected tasks.

Visual Basic for Applications
  Sub LevelResourcesInSelectedTasks()
Dim T As Task       ' Task object used in For Each loop
Dim A As Assignment ' Assignment object used in For Each loop

For Each T In ActiveSelection.Tasks
    For Each A In T.Assignments
        If ActiveProject.Resources(A.ResourceID).Overallocated Then
            ActiveProject.Resources(A.ResourceID).<strong class="bterm">Level</strong>
			            End If
    Next A
Next T

End Sub

See Also