It's an autoshape. Select it and delete it from each row or run the
following macro
For i = ActiveDocument.Shapes.Count To 1 Step -1
With ActiveDocument.Shapes(i)
If .Fill.ForeColor.RGB = RGB(153, 195, 143) Then
.Delete
End If
End With
Next i
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.