View Single Post
 
Old 12-03-2014, 03:58 AM
gmayor's Avatar
gmayor gmayor is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2014
Posts: 4,137
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

If by 'dot' you mean a period 'chr(46)' then

Code:
Dim oRow As Row
    For Each oRow In ActiveDocument.Tables(1).Rows
        If oRow.Cells(1).Range.Characters(1) = Chr(46) And _
           Len(oRow.Cells(1).Range) = 3 And _
           Len(oRow.Cells(2).Range) = 2 Then
            oRow.Delete
        End If
    Next oRow
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote