Range.AddComment Method

Excel Developer Reference

Adds a comment to the range.

Syntax

expression.AddComment(Text)

expression   A variable that represents a Range object.

Parameters

Name Required/Optional Data Type Description
Text Optional Variant The comment text.

Return Value
Comment

Example

This example adds a comment to cell E5 on worksheet one.

Visual Basic for Applications
  Worksheets(1).Range("E5").AddComment "Current Sales"

See Also