score:1

Accepted answer

to get to the point (paragraph) following a table, assign the table's range to a range object then collapse it to its end-point:

dim rng as word.range
'do things here until table is finished
set rng = tbl.range
rng.collapse wdcollapseend
'now the range is after the table, so do things with it, for example:
rng.text = "more text"

Related Query

More Query from same tag