I removed all footnotes from document and later started
re-entering new footnotes. When I entered the second
footnote, it numbered it incorrectly as 7. For some
reason, it is still recognizing my previous footnotes.
How do I remove all previous footnotes. I already tried
the Search (for footnote mark) and Replace (with blank)
but still having problem with renumbering my footnotes.
Please help.
Word Heretic - 30 Jan 2004 09:47 GMT
G'day "Hilda" <anonymous@discussions.microsoft.com>,
you could use VBA to address this.
Public Sub KillFootnotes()
with ActiveDocument.Footnotes
While .Count >0
.item(1).delete
wend
end with
End Sub
Steve Hudson
Word Heretic Sydney Australia
Tricky stuff with Word or words
Email: WordHeretic at tpg.com.au
Hilda was spinning this yarn:
>I removed all footnotes from document and later started
>re-entering new footnotes. When I entered the second
[quoted text clipped - 5 lines]
>
>Please help.