Paste Special - Unformatted

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

Guest

Is there a way to have Paste Special as a toolbar ? I always want to use 'unformatted' and seems like there should be a quicker way...
 
Yes, when I switched from Word Perfect I wanted an easy way to do just this
(as it is in WordPerfect). I recorded the macro and assigned it both a toolbar
button and to Ctrl-Shift-V, which now pastes unformatted text with a keypress.

- Colin
 
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