Dim arange as range
Set arange = ActiveDocument.Tables(1).Cell(1,1).Range
arange.Start=arange.end
arange.Select
However, try to use the .Range object rather than select the range. Your
code will run quicker as it does not then have to move the selection to that
point.
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.
Hi Dave,
as at least with word 97 and on my computer
doug's example places the cursor at the beginning
of the next cell, You might also like to try this:
Dim arange As Range
Set arange = ActiveDocument.Tables(1).Cell(1, 1).Range
arange.End = arange.End - 1
arange.Start = arange.End
arange.Select
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.