CostRateTable Object

Project Developer Reference

Represents a collection of pay rates for a resource. The CostRateTable object is a member of the CostRateTables collection.

Using the CostRateTable Object

Use CostRateTables(Index), where Index is the index number or name of the cost rate table, to return a single CostRateTable object. The following example changes the standard rate on one of a resource's pay rate tables.

  Dim GovtRates As CostRateTable

Set GovtRates = ActiveProject.Resources("Bob").CostRateTables("B") GovtRates.PayRates(1).StandardRate = "$10/h"

See Also