Sub readtable()
Dim myTable As Table
Dim myRow As Row
Dim myCell As Cell
Dim cellText As String
Set myTable = ActiveDocument.Tables(1)
For Each myRow In myTable.Rows
  For Each myCell In myRow.Cells
    cellText = myCell.Range.Text
    ' This line removes the trailing end of cell marker
    cellText = Trim$(Left$(cellText, Len(cellText) - 2))
    If Len(cellText) = 0 Then
      'Cell is empty; do something
    End If
  Next myCell
Next myRow
End Sub