Cursor to be in first cell of a table on opening page

C

CW

I have various documents containing tables in which data has to be entered.
I would like the cursor to be sitting in the first cell of the table ready
for input when the document is first opened, instead of at the default
position in the top left corner of the doc.
Can do? How?
Thank you!
 
J

Jezebel

If you don't like Doug's suggestion, use

ActiveDocument.Tables(1).Cell(1,1).Select
Selection.Collapse
 
Top