What's the best way to open multiple work documents? I want to be copying/pasting from different word documents through VBA. Should I open a new instance for each one? I really need two workbooks active at a time, and will close after the pasting has been done.
Is
Set objWord1 = CreateObject("Word.Application")
Set objWord2 = CreateObject("Word.Application")
objWord1.Document.open("maindocument.docx")
obj2Word2.Document.open("seconddoc.docx")
is this the most efficient way?