title | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | |
---|---|---|---|---|---|---|
Resource.Level method (Project) |
project-server |
|
b6c7f694-0854-2ec0-48ec-91721cef993c |
06/08/2017 |
medium |
Levels the resource.
expression. Level
expression A variable that represents a Resource object.
The following example levels the resources of the selected tasks.
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).Level
End If
Next A
Next T
End Sub
[!includeSupport and feedback]