Quote Originally Posted by Aussiebear View Post
Then I suggest you record the method of completing that which was indicated to Post #2 and then upload the code here so that we can modify it to suit your needs.
I'm not quite ready to go down the path you have suggested.
This means using VBA to change the default behaviour of MS Word on the client computer.
That feels invasive. (might be a genius work around, where nothing else will work)

Ideally I'm seeking a solution that only affects the document in question.


This code:
Sub EditPaste()
    Selection.PasteAndFormat (wdFormatPlainText)
    MsgBox "testing"
End Sub
Works because EditPaste is a builtin method/macro that is triggered by CTRL + V

The problem is that EditPaste is not triggered when the user chooses Paste Options:
And I have no idea what is triggered when they use Paste Options:

If someone knows how to inject code when the user chooses Paste Options: ... that would be very helpful