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
Setting Fraction Bar Overhang Spacing in the Equation Editor
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
If you are like me, when you write you make notes to yourself so you don't forget parts of the manuscript that may need more work or so you can jog your memory. Hidden text is great for this purpose, because you can hide your notes at any time so that others don't see them on the screen or in a printout. I found that I added enough notes that I wanted to create a macro that would insert a paragraph prior to the one in which I am working, and then format the paragraph as hidden text so I can enter my note. The result is the AddNote macro. The following version is in WordBasic, and it creates a red-text hidden paragraph.
Sub MAIN ParaDown 1 ParaUp 1 InsertPara CharLeft 1 Style "Normal" FormatFont .Points = "11", .Underline = 0, .Color = 6, \ .Strikethrough = 0, .Superscript = 0, .Subscript = 0, \ .Hidden = 1, .SmallCaps = 0, .AllCaps = 0, \ .Spacing = "0 pt", .Position = "0 pt", .Kerning = 0, \ .KerningMin = "", .Tab = "0", .Font = "Arial", .Bold = 1, \ .Italic = 0, .Outline = 0, .Shadow = 0 Insert "Note: " End Sub
Tip #29 applies to Microsoft Word versions: 6 95
Create and Merge! Using Word's mail merge tool you can quickly and easily combine data from a variety of data sources to create great individualized documents that incorporate your data in ways that you control. WordTips: Mail Merge Magic is an invaluable source for learning how to harness the full power of Word's mail merging capabilities.