Select Non-Consecutive Rows in Table - Word Macro VBA -
to select range in microsoft word 2007 table can following:
dim tablerange range dim otable table set tablerange = otable.rows(2).range tablerange.end = otable.rows(5).range.end how select multiple rows not in consecutive order (such when hold ctrl , select rows)?
Comments
Post a Comment