Share via


CostPerUse Property

Returns or sets the cost per use of a resource. Read/write Variant.

Example

The following example displays the sum of the cost per use of each resource in the active project.

Sub TotalCostPerUse()

    Dim R As Resource               ' Resource object used in For Each loop
    Dim TotalCostPerUse As Double   ' The total cost per use

    ' Add up the cost per use of each resource.
    For Each R In ActiveProject.Resources
        TotalCostPerUse = TotalCostPerUse + R.CostPerUse
    Next R

    ' Display the total cost per use.
    MsgBox ("Sum of the cost per use of each resource in this project: " & TotalCostPerUse)

End Sub

Applies to | PayRate Object, PayRates Collection Object | Resource Object, Resources Collection Object

See Also | AccrueAt Property | EffectiveDate Property | OvertimeRate Property | PayRates Property | StandardRate Property