How to use "Keep text only" as default?

O

Opinicus

Alexander Rahlis said:
Hi, I have a long problem with pasting to word from other documents,
the problem is know - it's different formatting.
there is a solution when word asks on each paste what type of formatting to
apply, but I always need the same "keep text only" option,
so maybe I can set it to be the default somehow, without clicking on the
same button thousand times a day?

That's a feature I'd like to see too. Unfortunately changing
the default isn't available (yet). For the time being, I use
a macro given to me by somebody in one of the Word/Office
groups:

<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've associated this with "control+shift+V". When I press
those three keys simultaneously, the contents of the
clipboard are pasted into the text without any of the
original formatting.

It's VERY useful.

Another one I'd like to see is a "match destination
formatting" macro but this one pretty much does that anyhow.
 
A

Alexander Rahlis

Hi, I have a long problem with pasting to word from other documents,
the problem is know - it's different formatting.
there is a solution when word asks on each paste what type of formatting to
apply, but I always need the same "keep text only" option,
so maybe I can set it to be the default somehow, without clicking on the
same button thousand times a day?

Thanks,
QuantumShadow.
 
A

Alexander Rahlis

Thanks Bob, It worked and I also learned to use macros!

btw, the macro u pasted has a syntax error it should be:


Selection.PasteSpecial Link:=False, DataType:=wdPasteText, Placement:=wdInLine, DisplayAsIcon:=False

without the "_"


Regards,
Alexander.
 

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