I have created a test macro in excel that copies a range and pastes into word as a table while keeping the format. The results this macro produces are almost the same as normal copy and paste except for the positions of values inside the cells (they are all way too close to the top). Are there other ways to copy or transfer a table? Link for visual difference http://prntscr.com/oemp2d
I have tried the simple .Paste and also .PasteExcelTable (false,false,false) but both produce the same issue. I assume this is a problem of the "Range.Paste" but i also cant use .select in a word document from an excel vba.
Sub test22()
Set shet = ActiveSheet
Set wdDoc = ActiveDocument
shet.Range("A1:B4").Copy
wdDoc.Paragraphs(1).Range.Paste
End Sub