Wednesday 12 August 2009

Ahhhh,,... MS Word Sanity

It had never occurred to me before, but to bypass the hideous annoyance of word pasting the reformatting for everything you paste simply:
  1. Create a macro that does "paste unformatted"
  2. Assign it to Ctrl-V

Couldn't be simpler.

Sub PasteUnformatted()
Selection.PasteAndFormat (wdFormatPlainText)
End Sub