Use a macro containing the following code:
Dim i As Long
Dim dname As Range
Dim dtable As Table
Set dtable = ActiveDocument.Tables(1)
For i = dtable.Rows.Count To 1 Step -1
Set dname = dtable.Cell(i, 2).Range
dname.End = dname.End - 1
dtable.Rows(i).Select
Selection.InsertRowsBelow 1
dtable.Cell(i + 1, 1).Range.Text = dname.Text
Next i
dtable.Columns(2).Delete
Make sure that you have saved a copy of the document before you run the code
just in case.
--
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