View Single Post
 
Old 03-31-2014, 07:51 AM
fumei fumei is offline Windows 7 64bit Office XP
Expert
 
Join Date: Jan 2013
Posts: 440
fumei is on a distinguished road
Default

What you could do is have a small macro that you fire with, say, a keyboard shortcut. It could insert your date. So type your text and then your shortcut.

Code:
Dim r As Range
Set r = Selection.Range.Cells(1).Range
r.Collapse 1
r.Fields.Add r, Type:=wdFieldDate
Reply With Quote