creating a paste special unformatted shortcut button

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
 
G

grammatim

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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top