Hi folks,
I am trying to find a quicker way of fill data into a table in MS Word. I am currently doing it cell by cell
e.g.
I am trying to find a quicker way of fill data into a table in MS Word. I am currently doing it cell by cell
e.g.
Code:
With mobjWord.ActiveDocument.Tables.Item(2).Cell(l_row, 5).Range
Try
.Delete()
.InsertAfter(Text:=p_dset1.ds_dataset.Tables(0).Rows(tmp1).Item("Year"))
Catch ex As Exception
End Try
End With
[CODE]
Any Ideas how it could be done better/quicker :-\