hi
I would like to be able to enter a table in a word document. I tried this:
But After that I put text and all my text go in the first column and first row. So how can I enter the text that I want in a specific row/column?
Thanks
I would like to be able to enter a table in a word document. I tried this:
Code:
With wrd.Selection
With .Font
.Name = "Arial"
.Size = 12
.Bold = False
End With
.Tables.Add(wrd.Selection.Range, 6, 3)
Thanks