How to change cut and paste preferences to text only?

J

jemiller

I do a lot of cut and pasting from different sources. I typically have to
always select paste unformatted text only. Is there a way to make this the
default and then I can change later if I do something else?
 
J

Jay Freedman

jemiller said:
I do a lot of cut and pasting from different sources. I typically
have to always select paste unformatted text only. Is there a way to
make this the default and then I can change later if I do something
else?

If you have Word 2007, go to Office button > Word Options > Advanced > Cut,
copy, and paste. The first four dropdowns in that group allow you to set the
defaults for various situations. Probably only the "Pasting from other
programs" dropdown needs to be set to Keep Text Only. You may or may not
want to check the option for Show Paste Options Buttons, which lets you
change the selection after each paste.

Earlier versions of Word don't have the default options, but the Paste
Options buttons are available (at least in 2003, I'm not sure how far back
they go).

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
G

Graham Mayor

Or you could add the following macro 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