S
SoNew2This
What I would like to do is delete a table between two bookmarks if row 2 cell
1 is blank. I've seen how to delete between two bookmarks:
Dim oRng As Range
With ActiveDocument
Set oRng=.Range(Start:=Bookmarks("BK1").Range.End,_
End:=BookMarks("BK2").Range.Start)
oRng.Delete
End With
But how would I test to see if the cell is blank and if so then delete the
table.
Thanks,
1 is blank. I've seen how to delete between two bookmarks:
Dim oRng As Range
With ActiveDocument
Set oRng=.Range(Start:=Bookmarks("BK1").Range.End,_
End:=BookMarks("BK2").Range.Start)
oRng.Delete
End With
But how would I test to see if the cell is blank and if so then delete the
table.
Thanks,