Link to home
Start Free TrialLog in
Avatar of sleer
sleer

asked on

Word 2003 Date Autofill

I would like a table cell in Word 2003 to autofill with the current date PLUS 14 days.  I can autofill with the current date but I need an experation date field.r
ASKER CERTIFIED SOLUTION
Avatar of Plantwiz
Plantwiz
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of GrahamSkan
That is fairly simple if you use VBA:

e.g.
ActiveDocument.Tables(1).Cells(1,1).Range.text = Format(DateAdd("d",14, Now"), "dd/MM/yyyy")

If you want to use a Word fields it can be much more difficult. See this site:

http://addbalance.com/word/datefields2.htm
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sleer
sleer

ASKER

Greatly appreciated.  Graham, unfortunatley I'm not familiar with VBA, but the link was informative.
Thank you and good luck!