Project.CurrencyCode Property

Project Developer Reference

Project property for the three-character ISO standard currency code of the project. Read/write String.

Syntax

expression.CurrencyCode

expression   A variable that represents a Project object.

Return Value
String

Example

The follwoing example sets CurrencyCode to the three-character ISO currency code "JPY".

Visual Basic for Applications
  Sub ChangeCurrencyAndValidate()
    ActiveProject.CurrencyCode = "JPY"
    MsgBox (ActiveProject.CurrencyCode)
End Sub

See Also