View Single Post
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom Stefan Blom is offline
external usenet poster
 
Posts: 8,428
Default creating a paste special unformatted shortcut button

You can use this macro:

Sub PasteAsUnformatted()
On Error Resume Next
Selection.PasteSpecial DataType:=wdPasteText
End Sub

For assistance, see http://www.gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP



"Bob W" Bob wrote in message
...
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