Project.CurrencyCode property (Project)
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.
Example
The following example sets CurrencyCode to the three-character ISO currency code "JPY".
Sub ChangeCurrencyAndValidate()
ActiveProject.CurrencyCode = "JPY"
MsgBox (ActiveProject.CurrencyCode)
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.