Paste changes the font

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Folks
In Word 2002, if I paste a sentence typed in Helvetica, into the middle of a
sentence that has also been written in Helvetica, the pasted text is
converted to Times New Roman. Does anyone have any idea why? and how it can
be fixed. Thanks Janet
 
Use edit > paste special as unformatted text - the following macro will
simplify things:

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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Janet

If you do not use AutoText, Macros or Custom Toolbars then close Word and
delete your [normal.dot] file. Restart Word and try Pasting Helv again.

If you do then copy them of old [normal.dot] into new using Organiser. But
that's something we can discuss another time.

Regards
Mike
 
Gentlemen - 2 very interesting and different fixes. Thanks very much - I'll
try them both.
Regards
Janet
 
Suzanne
Thank you very much for pointing me to this website. It explains exactly
how the problem has been caused.
Regards
Janet
 
You're welcome.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
Back
Top