I have one table in document and want to copy it into another location (more precisely, bookmark location). For now I have the following code:
Code:
Dim doc As Document
Dim t As Table
Set doc = ThisDocument
Set t = doc.Tables(1)
t.Select
Selection.Copy
doc.Bookmarks("bm46").Select
Selection.Paste
Is there another, more elegant, way to copy table? Thanks beforehand!