alexander1113
Programmer
To whomever can assist,
Does anyone know how to access a table in word using VB macro.
So far i have this:
Set myCell = ActiveDocument.Tables(count).Cell(Row:=1, Column:=1)
myCell = Left$(myCell, Len(myCell) - 2)
What I'm trying to do is access the cell so i can save what's in there in memory. But this does it for the whole document so i have to specify a count. I want to access it page by page. So on page 1 i want to access the first table, page 2, the same. I hope i provided enough information. Thanks in advance.
Does anyone know how to access a table in word using VB macro.
So far i have this:
Set myCell = ActiveDocument.Tables(count).Cell(Row:=1, Column:=1)
myCell = Left$(myCell, Len(myCell) - 2)
What I'm trying to do is access the cell so i can save what's in there in memory. But this does it for the whole document so i have to specify a count. I want to access it page by page. So on page 1 i want to access the first table, page 2, the same. I hope i provided enough information. Thanks in advance.