How to retain document formatting when importing text?

G

Guest

I am preparing a document that involves lots of copy and pasting from
different sources. Since these sources are formatted in different ways, I'm
wondering if there is a way to automatically convert imported (pasted) text
to the style and format of the new document I'm working on.

For example: my main document needs to be formatted in Times; the material
I'm pasting is in Ariel. How can I get Word to convert the text to Times
automatically when I paste it in the document? As it is now, it stays in
Ariel, and I have to convert each new entry automatically..

any suggestions?
 
G

Graham Mayor

Edit > paste special > unformatted text!
or use the following macro

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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
G

Guest

I paste from different source documents all the time and I tend to do the
following.
I don't know if it is the best way, but I can do very large documents, very
quickly.
Hopefully you source and new document have styles defined.
Go through the source document with Replace add at the end of each paragraph
a code of the desired style I want in the new document:
eg Find - "Style"^p, Replace with "BodyText2"^p
This places the new text at the end of all source paragraphs of a particular
style. Usually I add Highlight (yellow) so they stand out from the rest of
the text.
I tend not to do the "standard" BodyText style, as will be explained later.
I work my way through the document very quickly doing all the necessary
changes, ie All heading levels, bullet levels, etc. to reflect what I want to
occur.
Then copy all require text and paste into the new document. The placement of
the cursor is important before paste, if you have the cursor on your
"Standard" style (ie. BodyText1) and then do Paste Unformatted Text, all the
pasted text will be in the "standard" style.
Now find/replace the codes, replacing with the required style and clearing
the codes.
Beware of tables, that is another story all together ;-)

Hope this is clear as mud...
DeanH
 
G

Guest

I have the Paste Unformatted Text command permanatently on my toolbar. Via
Customise Toolbars, Commands, Edit.
 
S

Summer

Paste the text CTRL V - there is a small square to right of text right click
and check "Keep Source formatting".
 

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