Word needs sep. button for 'unformatted text' under Paste Special

G

Guest

I often use the paste special function, and specifically the 'unformatted
text' command within it to remove formatting and associated complications in
texts. For repeated functions it is somewhat laborious to always do this
through the 'Paste Special' button - it would be good if there were a
separate button for directly pasting unformatted text into documents

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...d75ea657ccc&dg=microsoft.public.word.newusers
 
G

Graham Mayor

It is a simple matter to create one. Attach the following macro 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

Top