Macro to Paste Unformatted Text in Word 2003

  • Thread starter Thread starter Justin
  • Start date Start date
J

Justin

I created a macro in Word 2003 to paste unformatted text, but when I run it,
it pastes formatted text instead. How can I fix this?
 
Using the correct code might help ;)

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

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

My web site www.gmayor.com

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