Name and refer to Word Tables

sharky12345

Well-known Member
Joined
Aug 5, 2010
Messages
3,404
Office Version
  1. 2016
Platform
  1. Windows
Not sure if this is possible, but at the moment I am referring to Tables in a Word document from Excel as follows;

Code:
WordDoc.tables(1)

Is it possible that I can name a Table in the Word document, (which is a template), and then refer to it by name in my code within Excel?
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Word tables do not have a name property. You could add a bookmark to the table and refer to that via code like:
WordDoc.Bookmarks("Tbl").Range.Tables(1)
That way, it doesn't matter where in the document the table you want to work with might be. Another options would be to insert the table into a content control (which you can apply a title to) and refer to it via that:
WordDoc.SelectContentControlsByTitle("Tbl").Item(1).Range.Tables(1)
 
Upvote 0
Thanks Paul and some interesting options that I didn't know about!
 
Upvote 0

Forum statistics

Threads
1,215,390
Messages
6,124,669
Members
449,178
Latest member
Emilou

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top