Shortcut for Paste Special?

H

hantsman99

I do a lot of work on web copy and am regularly moving text from web pages to
Word.
To undo the formatting, I highlight and right click Copy then use the Edit
menu to find Paste Special; this takes me to a dialog box where I select
Unformatted Text, then OK.
This is quite a long process. Is there a quicker way to do this?
 
G

Graham Mayor

Use a macro attached to a toolbar button 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