Project.CreationDate property (Project)
Gets the date a project was created. Read-only Variant.
Syntax
expression. CreationDate
expression A variable that represents a Project object.
Example
The following example adds the creation date of the active project to its notes.
Sub AddCreationDateToNotes()
ActiveProject.ProjectNotes = ActiveProject.ProjectNotes & vbCrLf & "This project was created on " & ActiveProject.CreationDate & "."
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.