Revision.Author property (Word)

Returns the name of the user who made the specified tracked change. Read-only String.

Syntax

expression. Author

expression Required. A variable that represents a 'Revision' object.

Example

This example displays the author name for the first tracked change in the first selected section.

Dim rngSection as Range 
 
Set rngSection = Selection.Sections(1).Range 
MsgBox "Revisions made by " & rngSection.Revisions(1).Author

See also

Revision Object

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.