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.