View Single Post
  #3   Report Post  
Posted to microsoft.public.word.pagelayout
mooseo mooseo is offline
external usenet poster
 
Posts: 2
Default How to remove cross references before printing

Thanks for the help! That macro is great.

cheers,
mike



If there are only a few references, you can right-click to select each
cross reference (because left-clicking will cause the cursor to jump
to the picture) and press Ctrl+Shift+F9 to "unlink" the field,
changing it into plain text.

If you have lots of them, use this macro (seehttp://www.gmayor.com/installing_macro.htmif needed):

Sub FlattenRefs()
Dim Fld As Field
For Each Fld In ActiveDocument.Fields
If Fld.Type = wdFieldRef Then
Fld.Unlink
End If
Next
End Sub

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ:http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.