Also, is there any way to remove all hypertext links in an entire Word
document if the 'Edit - Links' command is grayed out?
Thank you.
Terri
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
This will work in tables, text, or anywhere else:
First, display field codes in place of field results, by pressing Alt+F9.
The hyperlinks will all turn into something like
{ HYPERLINK "http://word.mvps.org/FAQs/index.htm"}
(Note: if you don't see quotes around the URL, then the newsgroup posting
mechanism has reformatted it. You'll see quotes in the field code.)
Select the part of the document that you want to remove hyperlinks from. If
you want to remove hyperlinks from the entire document, just put the cursor
at the beginning.
Now open the Edit > Replace dialog. Put this in the Find What box:
^19 HYPERLINK
The ^19 represents the left bracket of the code. You do need the space
between the 9 and the H. Leave the Replace With box empty and click Replace
All. If you had some text selected, Word will ask whether to continue
searching; click No.
--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
I hope that is a little clearer explanation. Can this be done?
Thank you.
Terri
"Jay Freedman" <jay.fr...@verizon.net> wrote in message
news:eT18ssbx...@TK2MSFTNGP12.phx.gbl...
--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
"Terri" <met...@mindspring.com> wrote in message
news:jRTjd.9436$Gm6....@newsread3.news.atl.earthlink.net...
OK, that does make a difference.
Here are two alternatives:
- If the hyperlinks are the *only* fields in the document body
(remember that fields include dates, times, page numbers other than
ones in headers/footers, and other things), or if there are other
fields but you don't mind converting them to plain text so they'll
never update again, you can select all (Ctrl+A) and unlink fields
(Ctrl+Shift+F9).
- If there are other fields and you need to be selective about
changing only the hyperlinks, use this small macro:
Sub UnlinkHyperlinks()
Dim nHL As Long
For nHL = 1 To ActiveDocument.Hyperlinks.Count
ActiveDocument.Hyperlinks(1).Delete
Next nHL
End Sub
If you need instructions to use the macro, see
http://www.gmayor.com/installing_macro.htm.
--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
On Tue, 09 Nov 2004 00:05:35 GMT, "Terri" <met...@mindspring.com>
wrote:
"Jay Freedman" <jay.fr...@verizon.net> wrote in message
news:8f80p0pikmpaggtvj...@4ax.com...
"Suzanne S. Barnhill" <sbar...@mvps.org> wrote in message
news:OrJF$SfxEH...@TK2MSFTNGP14.phx.gbl...