When I copy how do I make my destination format my default choice

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to make my destination format default choice when I copy, rather than
clicking the destination button every time I copy from another document.
 
You need a macro attached to a toolbar button
http://www.gmayor.com/installing_macro.htm

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

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
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

Back
Top