OK no problem. Locate the two lines
Code:
oRow.Cells(3).Range.ListFormat.RemoveNumbers NumberType:=wdNumberParagraph
and immediately after each add
Code:
oRow.Cells(1).Width = oTable.Rows(2).Cells(1).Width
oRow.Cells(2).Width = oTable.Rows(2).Cells(2).Width
oRow.Cells(3).Width = oTable.Rows(2).Cells(3).Width
This will force the cell widths to match the first section.