Written by Allen Wyatt (last updated January 15, 2022)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365
When Damodara reviews (and edits) documents, he uses Track Changes. He changes usernames and initials often, in order to differentiate his edits. Changing the usernames and initials is a pain, so Damodara is wondering if there is a way to more easily select from among his preferred usernames as he is doing his editing.
There isn't anything built into Word to facilitate this task, but it would be relatively easy to do the necessary changes in a macro. Basically you just need to change the .UserName and .UserInitials properties of the Application object.
Rather than re-invent the wheel, I'll share here a technique detailed at Michael Schuler's blog:
https://bergerplusschuler.com/2019/08/10/swapping-user-names/
The macro is rather short, with most of the code being devoted to setting variables that cycle through four different usernames and initials. The macro could be easily modified with just about any names desired, and it would be trivial to break it down into four separate macros, one for each username/initial pair. Here's an example:
Sub SetUser1() Application.UserName = "John Davis" Application.UserInitials = "JD" End Sub
The macro (or macros) could be assigned to shortcut keys or added to the ribbon to easily choose which username and initials you wanted to use.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (12808) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 365 applications with VBA programming. Written in clear terms and understandable language, the book includes systematic tutorials and contains both intermediate and advanced content for experienced VB developers. Designed to be comprehensive, the book addresses not just one Office application, but the entire Office suite. Check out Mastering VBA for Microsoft Office 365 today!
In publishing, it is common practice to indicate a range of numbers by using an en dash between the first number and the ...
Discover MoreMany word processing programs include commands that allow you to select a line of text. Word doesn't, but you can use the ...
Discover MoreTake a look in a dictionary at the way that words are phonetically spelled. Those special characters used to type those ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments