Is it possible to get the table from excel file and paste it to the word document saving its excel style? I didn\'t find adequate documentation about win32com and all its me
Got it! There is no need to select anything, just straight copying
sheet.Range("A1:D20").Copy() doc.Content.PasteExcelTable(False,False,False)
Since there is no documentation I had to try everything at random.