Word should allow me to make "paste special" without formatting a.

J

Jim

I frequently paste information from a web site into a word document. I
always have to select edit, paste special and no formatting. I would like to
make this the default paste setting. The html format with all the tables and
J buttons is not very helpful to me. If I want the html then I view the
source.
 
G

Graham Mayor

Add the following macro to normal dot and attach it to a toolbar button

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


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


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

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