How to turn off auto formatting?

B

Bailey

I am trying to copy data from an existing document to another and when I try
to do it the formatting in the new document changes.

For instance, when I copy a couple of paragraphs with bullets into a new
document it changes the whole formatting in the document. It also moves all
the data down in the document. Is there something that can be done to
prevent this from happening? Please advise.
 
G

Graham Mayor

See http://word.mvps.org/FAQs/Formatting/WholeDocumentReformatted.htm

If the source document uses the same stylenames as the target document and
those styles are defined differently, somethings got to give.

Of course if you add anything to a document the existing content of the
document will 'move down' to accommodate it.

The simple solution to your problem is to use Edit > paste special >
unformatted text (or use the following macro attached to a toolbar button of
keyboard shortcut if you do this regularly) and the inserted text will adopt
the format at the cursor position in the target document, where you can add
whatever formatting your require.

Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial _
DataType:=wdPasteText, _
Placement:=wdInLine
End
oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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