PageSetup.PrintNotes Property

Excel Developer Reference

True if cell notes are printed as end notes with the sheet. Applies only to worksheets. Read/write Boolean.

Syntax

expression.PrintNotes

expression   A variable that represents a PageSetup object.

Remarks

Use the PrintComments property to print comments as text boxes or end notes.

Example

This example turns off the printing of notes.

Visual Basic for Applications
  Worksheets("Sheet1").PageSetup.PrintNotes = False

See Also