View Single Post
  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Merged letter and made changes to merged letters. Final merged doc

That's the thing about Date fields they update to the PC's system date.
You'll need to unlink them. The following macro will do that

Sub Macro1()
Dim oField As Field
For Each oField In ActiveDocument.Fields
If oField.Type = wdFieldDate Then
oField.Unlink
End If
Next oField
End Sub

http://www.gmayor.com/installing_macro.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"Serena K." wrote in message
...
Merged letter and made changes to merged letters. Final merged document
has
date in field code and atty wants to change it from Jan 5 to Jan 4. She
does
search and replace but the date automatically updates on print, even if we
change that setting.
--
Serena