WORD 2003 note / table formatting

  • Thread starter removing all headers and footers
  • Start date
R

removing all headers and footers

I have been sent a text MS Word 2003 file from my publisher that appears to
have the endnotes of a long text chapter listed at the end (not imbeded) but
set/formatted in some odd sort of table styles that scroll off the text to
the right off the page and that have an odd square character at the front of
each note. Each note has lines around it.

I have absolutely no experience with Word table styles, and just want to get
rid of this table formatting entirely, to get normal text.

The styles pane lists many kinds of table styles. How do I get rid of ALL of
them from the text? thanks.
 
D

Doug Robbins - Word MVP

They sound like Comments that have been inserted using Insert>Comment.

If that is correct, and you run a macro containing the following code, it
will insert the comment into the text of the document, enclosing it in
square brackets [ ]

Dim ac As Comment
With ActiveDocument
For Each ac In .Comments
ac.Reference.InsertAfter " [" & ac.Range & "]"
ac.Delete
Next ac
End With


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"removing all headers and footers"
 
R

removing all headers and footers

Hi, I tried to create this in visual basic, but must be doing it wrong. What
is the tutorial on how to do this? thanks, JF

Doug Robbins - Word MVP said:
They sound like Comments that have been inserted using Insert>Comment.

If that is correct, and you run a macro containing the following code, it
will insert the comment into the text of the document, enclosing it in
square brackets [ ]

Dim ac As Comment
With ActiveDocument
For Each ac In .Comments
ac.Reference.InsertAfter " [" & ac.Range & "]"
ac.Delete
Next ac
End With


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"removing all headers and footers"
I have been sent a text MS Word 2003 file from my publisher that appears
to
have the endnotes of a long text chapter listed at the end (not imbeded)
but
set/formatted in some odd sort of table styles that scroll off the text to
the right off the page and that have an odd square character at the front
of
each note. Each note has lines around it.

I have absolutely no experience with Word table styles, and just want to
get
rid of this table formatting entirely, to get normal text.

The styles pane lists many kinds of table styles. How do I get rid of ALL
of
them from the text? thanks.
 
D

Doug Robbins - Word MVP

See the article "What do I do with macros sent to me by other newsgroup
readers to help me out?" at:

http://www.word.mvps.org/FAQs/MacrosVBA/CreateAMacro.htm


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"removing all headers and footers"
Hi, I tried to create this in visual basic, but must be doing it wrong.
What
is the tutorial on how to do this? thanks, JF

Doug Robbins - Word MVP said:
They sound like Comments that have been inserted using Insert>Comment.

If that is correct, and you run a macro containing the following code, it
will insert the comment into the text of the document, enclosing it in
square brackets [ ]

Dim ac As Comment
With ActiveDocument
For Each ac In .Comments
ac.Reference.InsertAfter " [" & ac.Range & "]"
ac.Delete
Next ac
End With


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"removing all headers and footers"
I have been sent a text MS Word 2003 file from my publisher that
appears
to
have the endnotes of a long text chapter listed at the end (not
imbeded)
but
set/formatted in some odd sort of table styles that scroll off the text
to
the right off the page and that have an odd square character at the
front
of
each note. Each note has lines around it.

I have absolutely no experience with Word table styles, and just want
to
get
rid of this table formatting entirely, to get normal text.

The styles pane lists many kinds of table styles. How do I get rid of
ALL
of
them from the text? thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top