MS Word Date Calculatoin

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In MS Word I need to calculate Today's date plus 14 days. I am working on a
mail merge where I am looking for a reply 14 days from Today's date.

I attempted to use =DateAdd("d",14,Now())

However I receive a syntax error.

Thanks for the assistance
 
Would something like this work for you?

Selection.TypeText Format(Now + 14, "mmm dd, yyyy")


Steve
 
It looks like the original poster was trying to use VBA syntax in a field
code, which will never work. Of course you can do it in VBA, but then you
need some way to fire the macro; and the result would be plain text rather
than a field that would update.

For field syntax, see
http://www.gmayor.com/insert_a_date_other_than_today.htm.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
Thank you for the assistance.

I have typed the following into the body of my document: {={Date}
=14}....however it appears as text. How do I make it function as and
expression?
 
If you actually read the cited article, you would know why what you
typed will not work.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top