Welcome toWord.Tips.Net
Ask a Word Question
Make a Comment
Learn Access Now
Free Printable Forms
Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Legal Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips
Printing On Both Sides of the Paper
Turning Off AutoComplete for Dates
Understanding Auto Line Spacing
Adding Comments to Your Document
Conditional Calculations in Word
The attorneys at Patty's law firm use Word's Track Changes as a collaboration tool and they especially like seeing different author revisions represented in different colors and by name. The firm has had a problem that has cropped up lately where an attorney sends out a document to a client, looking for them to make revisions, but when the document returns all changes are in one color identified by "Author." In tracking this down, Patty believes that the problem happens because the person on the other side makes changes and saves with the "Remove Personal Information On Save" setting turned on. She wonders if there is a way (perhaps with a macro) that they can prevent this setting from being turned on so they can see who makes changes in the documents sent out to clients.
The easiest way to handle this (as Patty suspected) is to use a macro. The macro can be set up so that it runs whenever the document is opened. (All you need to do is store the macro within the ThisDocument object.) The macro needs to set only a single setting:
Private Sub Document_Open()
With ActiveDocument
.RemovePersonalInformation = False
End With
End Sub
Now, there are a couple of caveats related to the efficacy of using a macro to set this setting. First, you need to understand that if the user doesn't enable macros when opening the document, then this macro will never run. Second, the macro runs when the document opens, which means that the setting could be explicitly changed by the user once the document is open.
Perhaps a better solution to the problem would fall in the area of user education: You could create an instruction sheet that is provided to the client, along with the document, instructing the client on how to correctly make changes to the document. This sheet could instruct the client not to change the "Remove Personal Information On Save" setting, along with other things you want done during the document review.
Tip #3799 applies to Microsoft Word versions: 97 2000 2002 2003 2007
More Power! For some people, the prospect of creating Word macros can be scary. WordTips: The Macros can help you conquer your fears and you'll discover you're much more confident and productive as you make Word do exactly what you want. This is an invaluable source for learning macros. You are introduced to the topic in bite-sized chunks, pulled from past issues of WordTips. Learn at your own pace, exactly the way you want.