> Sure. To unlink all SEQ fields, for example, use this macro:
>
[quoted text clipped - 7 lines]
> > In Word 2000, can you unlink a specified field throughout the
> > document in one shot?
See:
http://gregmaxey.mvps.org/Field_Macros.htm

Signature
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.
> Well this worked for the fields in the main text, but how do I unlink in
> headers too? Also, my field is DocProperty for which I have several custom
[quoted text clipped - 14 lines]
>> > In Word 2000, can you unlink a specified field throughout the
>> > document in one shot?
Graham's article provides examples for searching all stories of a
document. But, as far as I can tell, it does not explain how to find a
specific "flavor" of a field, for example, how to find { DOCPROPERTY
"Compound" } but not { DOCPROPERTY "Title" }. For that, you would have
to investigate the field code directly:
If Instr(UCase$(f.Code.Text), "COMPOUND") Then
f.Unlink
End If

Signature
Stefan Blom
Microsoft Word MVP
> Well this worked for the fields in the main text, but how do I unlink in
> headers too? Also, my field is DocProperty for which I have several custom
[quoted text clipped - 13 lines]
> > > In Word 2000, can you unlink a specified field throughout the
> > > document in one shot?
Stefan Blom - 05 Oct 2006 10:08 GMT
> Graham's article provides examples for searching all stories of a
> document.
Correction: Greg's article.
Sorry!

Signature
Stefan Blom
Microsoft Word MVP
> But, as far as I can tell, it does not explain how to find a
> specific "flavor" of a field, for example, how to find { DOCPROPERTY
[quoted text clipped - 26 lines]
> > > > In Word 2000, can you unlink a specified field throughout the
> > > > document in one shot?
Greg Maxey - 05 Oct 2006 11:30 GMT
Stefan,
Apparently you where paying closer attention to the question than me ;-)
I will add an example of looking to this level in the article when I get a
chance.
Thanks.

Signature
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.
> Graham's article provides examples for searching all stories of a
> document. But, as far as I can tell, it does not explain how to find a
[quoted text clipped - 28 lines]
>>>> In Word 2000, can you unlink a specified field throughout the
>>>> document in one shot?