set table = ActiveDocument.GetSheetObject( "CH148" )
'DIm array(7,2) For RowIter = 0 to table.GetRowCount-1 For ColIter = 0 to table.GetColumnCount-1 set cell = table.GetCell(RowIter,ColIter) 'array(RowIter,ColIter)=cell.Text objWorksheet.Cells(RowIter+1,ColIter+1).Value=cell.Text 'Msgbox(cell.Text) Next Next