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
Collapsing and Expanding Subdocuments
Sharen asked if there is a way to automatically calculate a due date in a letter that has its beginnings as the result of a mail merge. The easiest answer may be to examine the data source you are using for your mail merge, and add an extra "due date" field to the source. For instance, if you are using an Excel worksheet as your source, you might add a field (column) that contains a date that is thirty days in the future. Likewise, if you are using Access as your data source you could do the same thing.
This approach would, of course, give you a static date that is thirty days in the future based on when you performed your mail merge. If you wanted something a bit more dynamic, then you are left to work entirely within Word. For instance, you might want to open the merged letter, update the letter's date, and have the due date automatically change based on changing the letter date. Unfortunately, there is no way to do this within Word, since there is no way to do calculations on dates within fields. This means that you must still manually update the due dates.
One way to make the task a bit easier, so that you don't have to always examine a calendar to figure out thirty days in the future, is to use a macro. The following is a very simple VBA macro that will insert a date thirty days from now:
Sub FutureDate()
Selection.TypeText Text:=Format(Date + 30, "mmmm d, yyyy")
End Sub
This macro determines today's date, adds 30 days to it, formats it as specified in the format string ("mmmm d, yyyy") and inserts it into the document. If you assign this macro to a shortcut key, you can quickly insert your future date whenever you want, just by hitting the shortcut key.
Tip #1760 applies to Microsoft Word versions: 97 2000 2002 2003
Create Rock-Solid Lists! Bulleted and numbered lists can help make your writing clearer and easier to follow. If not done properly, however, they can be a nightmare to work with. Discover the ins and outs of Word's lists with this great reference available in two versions.