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

Search for cross-references

491 views
Skip to first unread message

Paul

unread,
Nov 18, 2009, 1:03:22 PM11/18/09
to
In Word 2003 (Windows XP) is there a way search for cross-references?

Stefan Blom

unread,
Nov 18, 2009, 2:27:26 PM11/18/09
to
In Word, cross-references are REF fields, which means you can do the
following: Press Alt+F9 to show field codes. Display the Find dialog box
(Ctrl+F). In the "Find what" box, type ^d. Use the Find Next button to move
between REF fields.

--
Stefan Blom
Microsoft Word MVP

"Paul" <paul.d...@gmail.com> wrote in message
news:5e15dd82-666c-4e58...@o23g2000vbi.googlegroups.com...

Suzanne S. Barnhill

unread,
Nov 18, 2009, 3:07:55 PM11/18/09
to
Or use ^d REF if you just want to find REF fields and no others.
Alternatively, F11 will go to the next field even when field codes aren't
displayed.

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

"Stefan Blom" <Stefa...@discussions.microsoft.com> wrote in message
news:uhoXmTI...@TK2MSFTNGP04.phx.gbl...

Stefan Blom

unread,
Nov 18, 2009, 3:17:07 PM11/18/09
to
^d REF is what I meant to suggest, of course! Thank you.

--
Stefan Blom
Microsoft Word MVP

"Suzanne S. Barnhill" <sbar...@mvps.org> wrote in message
news:unDizrIa...@TK2MSFTNGP02.phx.gbl...

Paul

unread,
Nov 18, 2009, 5:18:23 PM11/18/09
to
OK...thanks.

Now I'm going to be selfish.

Is there a way to only search for REF fields, but not have to turn on
field codes? I want to be able to see what the field code evaluates
to, as I'm going from field code to field code.

Finally, is there a native keyboard shortcut for Next Find? If not,
I'll use a macro.

Thanks.

On Nov 18, 3:17 pm, "Stefan Blom"


<StefanB...@discussions.microsoft.com> wrote:
> ^d REF is what I meant to suggest, of course! Thank you.
>

> "Suzanne S. Barnhill" <sbarnh...@mvps.org> wrote:
> > Or use ^d REF if you just want to find REF fields and no others.
> > Alternatively, F11 will go to the next field even when field codes aren't
> > displayed.

> > "Stefan Blom" <StefanB...@discussions.microsoft.com> wrote:
> >> In Word, cross-references are REF fields, which means you can do the
> >> following: Press Alt+F9 to show field codes. Display the Find dialog box
> >> (Ctrl+F). In the "Find what" box, type ^d. Use the Find Next button to
> >> move between REF fields.
>

Suzanne S. Barnhill

unread,
Nov 18, 2009, 5:52:06 PM11/18/09
to
Find Next, if you're just finding (not replacing) is Enter while the Find
dialog is open. Or you can use the double-down-arrow button at the bottom of
the vertical scroll bar; the keyboard equivalent of that (BrowseNext, which
in this case is Next Find/Go To) is Ctrl+PageDown.

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

"Paul" <paul.d...@gmail.com> wrote in message
news:5005d731-434a-46d4...@x16g2000vbk.googlegroups.com...

Graham Mayor

unread,
Nov 19, 2009, 1:51:41 AM11/19/09
to
The following macro will work

Dim oField As Field
For Each oField In ActiveDocument.Fields
If oField.Type = wdFieldRef Then
oField.Select
MsgBox oField.Code
End If
Next oField


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

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

Paul

unread,
Nov 20, 2009, 4:45:16 PM11/20/09
to
Thanks for that, Suzanne!

Paul

unread,
Nov 20, 2009, 4:46:04 PM11/20/09
to
Thank you, Graham!

On Nov 19, 1:51 am, "Graham Mayor" <gma...@REMOVETHISmvps.org> wrote:
> The following macro will work
>
> Dim oField As Field
> For Each oField In ActiveDocument.Fields
>     If oField.Type = wdFieldRef Then
>         oField.Select
>         MsgBox oField.Code
>     End If
> Next oField
>

0 new messages