I'm copying a table from Word then pasting the copied table in an Excel file:
tbl.Range.Copy()
oSheet.Activate()
rng = oSheet.Range("A1")
rng.Activate()
rng.PasteSpecial(Excel.XlPasteType.xlPasteAll)
But when I do this, the table is pasted as a picture. Can anyone please help me with this?