Font Of Pasted Text

G

Guest

I am running Windows XP and Word 2003. If I have 2 documents with different
font and text sizes, when I copy and paste from one how do I make the font
and text size of the pasted text the same as the document I'm pasting into?
My pastes always seem to have the font and text size of thte document I've
copied from.
Many thanks

Chris
 
G

Graham Mayor

Use edit paste special > unformatted text (or the following macro) to paste
the text. It will then adopt the format at the cursor.

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