How can I delete all blank rows in a Word Table?

Try pasting this code (in blue) into the VBA editor. Then run the macro called EmptyRowDelete ======================================= Public Sub EmptyRowDelete() Dim myTable As Table, myRow As Range, myCell As Cell, Counter As Long, _TextInRow As Boolean, NumRows As...