Hi Jesse,
it seems, one needs the selection for this:
Sub Test0987()
Dim r As Long ' row
Dim t As Table
Set t = Selection.Tables(1)
For r = 1 To t.Rows.Count * 2 Step 2
t.Cell(r, 1).Select
Selection.InsertRowsBelow 1
Next
End Sub
To be used wisely!

Signature
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"
Doug Robbins - Word MVP - 18 Feb 2006 07:55 GMT
Always better/quicker to avoid using the Selection
Dim i As Long
With ActiveDocument.Tables(1)
.Rows.Add
For i = .Rows.Count - 1 To 2 Step -1
.Rows.Add BeforeRow:=.Rows(i)
Next i
End With

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> Hi Jesse,
>
[quoted text clipped - 11 lines]
>
> To be used wisely!