How can I force PASTE to paste as plain, unformmated text...

W

Walter Sobchak

I always have to go PASTE SPECIAL, UNFORMATTED or PLAIN TEXT

Surely there must be a way to get office to paste these items as unformmated text rather than HTML..

thanks in advance for any help you can give me
 
M

Mike Williams [MVP]

Walter said:
I always have to go PASTE SPECIAL, UNFORMATTED or PLAIN TEXT.

Surely there must be a way to get office to paste these items as
unformmated text rather than HTML...

Applications try to take the richest format off the clipboard by default.
Why not create a macro to do the desired paste special ?

Mike Williams - Office MVP http://www.mvps.org/faq/
If something doesn't make sense, it could be worse e.g.
http://www.rathergood.com/moon_song/

Please respond in the same thread on this newsgroup - not by email!
Include details of your application and Windows versions, plus any
service pack updates. Answers may also be found by reading recent
posts, checking the FAQs or searching the relevant Google archive at.
http://groups.google.com/groups?group=microsoft.public
 
O

Opinicus

Mike Williams said:
Applications try to take the richest format off the clipboard by
default. Why not create a macro to do the desired paste special ?

This is the macro I use:

<quote>
Sub PasteUnformatted()
'
' PasteUnformatted Macro
' Control shift V pastes the clipboard without formatting
Selection.PasteSpecial Link:=False, DataType:=wdPasteText, Placement:= _
wdInLine, DisplayAsIcon:=False
End Sub
<quote>

I didn't create it and I don't remember who I got it from.
 

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