Font Of Pasted Text

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top