I do not know why this happens but it does. The Union successfully pastes into Excel but not into Word.
Here is an easy workaround:
- paste "Union" table into an unused area in Excel first
- copy that table into Word
- delete "Union" table in Excel
Application.Union(range("B2:C" & ArrayCounter + 2), range("J2:K" & ArrayCounter + 2)).Copy
Range("AB2").PasteSpecial (xlPasteAll)
Range("AB2").CurrentRegion.Select
Selection.Copy
objWord.Selection.PasteExcelTable False, False, False
Range("AB2").CurrentRegion.Clear
Bookmarks