Hey there!
Sorry if I sound like a moron... but this is what I did.
I remmed out
' Set WordObj = CreateObject("Word.Application")
and replaced it with:
Dim WordObj As New Word.Application
The good news is that the macro didn't crash... it proceeded to do what's required (Ask me what row to start pasting and what column and then it opened up a Open File dialog box)
At this point... I was about to jump for joy...
But then...
Nothing happened. No bookmarks were pasted.
I did set a reference to the object library from the beginning.
In terms of Early Binding, I haven't a clue what that means(!)
Although, you may be on to something, because in some other thread somewhere, someone else talked about Early Bindings...
Is there anything else I'd have to do besides:
' Set WordObj = CreateObject("Word.Application")
Dim WordObj As New Word.Application
..or must I make some other changes to the code??
Let's hope we can solve this!! I'll be very very happy!
Thank you!
Mike