How to fillout a complete row of a table in one go

donnacha

Well-known member
Joined
Feb 27, 2003
Messages
187
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.
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    :-\
 
Back
Top