Task.Notes property (Project)

Gets or sets the notes for a task. Read/write String.

Syntax

expression. Notes

expression A variable that represents a Task object.

Remarks

The Notes property does not accept characters with an ASCII value less than 32, except for the carriage return (ASCII 13) and linefeed (ASCII 10) characters.

Example

The following example adds a comment to the notes of the task in the active cell.

Note

If a task is not selected, the code results in a run-time error 1004.

Sub AddDelayNote() 
 ActiveCell.Task.Notes = ActiveCell.Task.Notes & vbCrLf & vbCrLf & "This task can be delayed." 
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.