Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

How do i unlink all of the fields in an MS-Word 2007 document?

3,481 views
Skip to first unread message

byafuso

unread,
Sep 25, 2009, 9:22:01 PM9/25/09
to
I used to be able to do this in MS-Word 2003 by doing a "select all" and
pressing <ctrl>+<shift>+<F9>, but that doesn't seem to work any more. At
least it doesn't seem to get rid of hyperlinks to button pictures.

Am I doing something wrong, or was this feature disabled in MS-Word 2007?

Thanks

Graham Mayor

unread,
Sep 26, 2009, 1:56:25 AM9/26/09
to
Ctrl+Shift+F9 still unlinks fields in Word 2007
Are you sure that you haven't got a keyboard with alternate switching for
the F keys?

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

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

Peter T. Daniels

unread,
Sep 26, 2009, 9:54:10 AM9/26/09
to
Can "hyperlinks to button pictures" (whatever they are) be considered
"fields"?

On Sep 26, 1:56 am, "Graham Mayor" <gma...@REMOVETHISmvps.org> wrote:
> Ctrl+Shift+F9 still unlinks fields in Word 2007
> Are you sure that you haven't got a keyboard with alternate switching for
> the F keys?
>
> --
> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Graham Mayor -  Word MVP
>
> My web sitewww.gmayor.com

> Word MVP web sitehttp://word.mvps.org


> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>
>
>
> byafuso wrote:
> > I used to be able to do this in MS-Word 2003 by doing a "select all"
> > and pressing <ctrl>+<shift>+<F9>, but that doesn't seem to work any
> > more.  At least it doesn't seem to get rid of hyperlinks to button
> > pictures.
>
> > Am I doing something wrong, or was this feature disabled in MS-Word
> > 2007?
>

> > Thanks-

Greg Maxey

unread,
Sep 26, 2009, 1:07:52 PM9/26/09
to
Peter,

Hyperlinks are fields. Select and toggle field codes to see for yourself.

--
Greg Maxey

See my web site http://gregmaxey.mvps.org
for an eclectic collection of Word Tips.

"It is not the critic who counts, not the man who points out how the
strong man stumbles, or where the doer of deeds could have done them
better. The credit belongs to the man in the arena, whose face is
marred by dust and sweat and blood, who strives valiantly...who knows
the great enthusiasms, the great devotions, who spends himself in a
worthy cause, who at the best knows in the end the triumph of high
achievement, and who at the worst, if he fails, at least fails while
daring greatly, so that his place shall never be with those cold and
timid souls who have never known neither victory nor defeat." - TR

Suzanne S. Barnhill

unread,
Sep 26, 2009, 2:07:59 PM9/26/09
to
I also am curious about "hyperlinks to button pictures." The first thing I
thought of was a MacroButton field with a picture as the prompt, but that's
not a hyperlink (though you can nest a hyperlink within the MacroButton
field as described at
http://word.mvps.org/FAQs/TblsFldsFms/HLinksInForms.htm).

Or perhaps the reference is to picture bullets? Or a button picture used as
the display text of a hyperlink? I guess that's the most likely. Unlinking
the field would leave the button displayed, but the hyperlink would no
longer work.

I'd be interested to see some clarification on this, though.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org

"Greg Maxey" <gma...@mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in message
news:uJBZkvs...@TK2MSFTNGP02.phx.gbl...

macropod

unread,
Sep 26, 2009, 7:36:51 PM9/26/09
to
Hi byafuso,

Ctrl-A followed by Ctrl-Shift-F9 will only unlink fields in-line with text in the body of the document. It won't affect fields in
headers, footers, or floating shape objects (eg a hyperlink attached to an image formatted as 'square'). Here's a macro to do the
job for you:

Sub UnlinkAll()
Dim oRng As Range, hLink As Hyperlink
Application.ScreenUpdating = False
With ActiveDocument
' Loop through Story Ranges and update.
' Note that this may trigger interactive fields (eg ASK and FILLIN).
For Each oRng In .StoryRanges
Do
oRng.Fields.Unlink
For Each hLink In oRng.Hyperlinks
hLink.Delete
Next
Set oRng = oRng.NextStoryRange
Loop Until oRng Is Nothing
Next
End With
Application.ScreenUpdating = True
End Sub

--
Cheers
macropod
[Microsoft MVP - Word]


"byafuso" <bya...@discussions.microsoft.com> wrote in message news:58F9EAB1-F659-4AF1...@microsoft.com...

0 new messages