creating a paste special unformatted shortcut button

  • Thread starter Thread starter Bob W
  • Start date Start date
B

Bob W

I would like to create a shortcut button on the toolbar for 'Paste special,
unformatted text'. This is a task I do a lot and a shortcut would save a lot
of time. I'm not sure how to create this, I suspect it needs VBA which I'm
not very good at !
Any suggestions would be welcome.

thanks
 
Just three weeks ago, Graham Mayor answered this question for me --
and it works:

Add the following macro to a button on the QAT or keyboard shortcut.

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