B
bhartman33
Hi, Everyone.
I'm dealing with a table, which has a nested table in each row of
column 9. What I would like to do is to take a specifc row of this
nested table, and copy that row into column 10. My problem is I can't
get the code right to refer to a specific row within this nested table.
Here's my code:
Dim mtable As Range
Set mtable = ActiveDocument.Tables(2).Range
mtable.Rows(5).Cells(9).Select
My problem is that this code selects the entire nested table, rather
than a row within the nested table. Can anyone set me straight?
Thanks!
I'm dealing with a table, which has a nested table in each row of
column 9. What I would like to do is to take a specifc row of this
nested table, and copy that row into column 10. My problem is I can't
get the code right to refer to a specific row within this nested table.
Here's my code:
Dim mtable As Range
Set mtable = ActiveDocument.Tables(2).Range
mtable.Rows(5).Cells(9).Select
My problem is that this code selects the entire nested table, rather
than a row within the nested table. Can anyone set me straight?
Thanks!