I thought I could explicity call out the new App instance and the current App instance in the copy portion of the code, but that didn't work either:
' Import
xlApp.Workbooks(xlWB.Name).Worksheets(xlSh.Name).Range(xlDataRange.Address(0, 0)).Copy _
Destination:=Application.Workbooks(wbData.Name).Worksheets(shData.Name).Range("A1")
What's worse, is if I just leave out the Destination field and have it copy to the clipboard and paste (manually), instead of Pasting "A1:AG2,A3329:AG3575", it pastes "A1:AG3575"
what gives?