Check whether the cell range length is = 2 e.g.
Dim oTable As Table
Dim oCell As Range
Set oTable = ActiveDocument.Tables(1)
For i = 1 To oTable.Rows.Count
For j = 1 To oTable.Columns.Count
Set oCell = oTable.Cell(i, j).Range
If Len(oCell) = 2 Then
MsgBox "Cell Row " & i & " Column " & j & " is empty"
End If
Next j
Next i
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>