D
DKG
Hi,
I have a macro with the following code:
Dim t As Table, c As Cell, i As Long
Set t = ActiveDocument.Tables(1)
For i = t.Columns(1).Cells.Count To 1 Step -1
t.Columns(1).Cells(i).Select
Selection.InsertRowsBelow 1
Next i
Selection.Collapse wdCollapseStart
End Sub
I want to modify this code in spite of "insertion of row"
with insertig a "auto text entry". How can I do this?
Thanks in advance
I have a macro with the following code:
Dim t As Table, c As Cell, i As Long
Set t = ActiveDocument.Tables(1)
For i = t.Columns(1).Cells.Count To 1 Step -1
t.Columns(1).Cells(i).Select
Selection.InsertRowsBelow 1
Next i
Selection.Collapse wdCollapseStart
End Sub
I want to modify this code in spite of "insertion of row"
with insertig a "auto text entry". How can I do this?
Thanks in advance