K
keith
Hello,
I need to find, select and copy the next Table of Authorities field using
VBA. I am working eith the example code shown below, but have been unable to
determine what will work in the find-text field to identify a TA field based
on the TA identifier, and not the contents of the field. Would appreciate
some help.
The code I have tried is in the help system, and is as follows.
With Selection.Find
.Forward = True
.ClearFormatting
.MatchWholeWord = True
.MatchCase = False
.Wrap = wdFindContinue
'.Execute FindText:="TA" ' this line found the TA letters, but also
found every other "ta" combination in the document.
.Execute FindText:="Microsoft"
End With
Thank you
keith
I need to find, select and copy the next Table of Authorities field using
VBA. I am working eith the example code shown below, but have been unable to
determine what will work in the find-text field to identify a TA field based
on the TA identifier, and not the contents of the field. Would appreciate
some help.
The code I have tried is in the help system, and is as follows.
With Selection.Find
.Forward = True
.ClearFormatting
.MatchWholeWord = True
.MatchCase = False
.Wrap = wdFindContinue
'.Execute FindText:="TA" ' this line found the TA letters, but also
found every other "ta" combination in the document.
.Execute FindText:="Microsoft"
End With
Thank you
keith