Skip to content

Latest commit

 

History

History
36 lines (17 loc) · 571 Bytes

ac964a80-1646-41a0-8b3a-941c800395e7.md

File metadata and controls

36 lines (17 loc) · 571 Bytes

Comment.Author Property (Excel)

Returns or sets the author of the comment. Read-only String .

Syntax

expression . Author

expression A variable that represents a Comment object.

Example

This example deletes all comments added by Jean Selva on the active sheet.

For Each c in ActiveSheet.Comments 
 If c.Author = "Jean Selva" Then c.Delete 
Next

See also

Concepts

Comment Object

Other resources

Comment Object Members