View Single Post
 
Old 03-31-2014, 06:30 AM
Sektor Sektor is offline Windows 8 Office 2013
Novice
 
Join Date: Mar 2014
Location: Russia
Posts: 6
Sektor is on a distinguished road
Default Copy table to another location in the same document

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!
Reply With Quote