--
Stefan Blom
Microsoft Word MVP
"Paul" <paul.d...@gmail.com> wrote in message
news:5e15dd82-666c-4e58...@o23g2000vbi.googlegroups.com...
--
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
Microsoft Word MVP
"Suzanne S. Barnhill" <sbar...@mvps.org> wrote in message
news:unDizrIa...@TK2MSFTNGP02.phx.gbl...
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
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...
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
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
>