Sub DelMarkedRow()
While ActiveCell.Row > 1
If ActiveCell.Value = "`" Then
ActiveCell.EntireRow.Delete
End If
ActiveCell.Offset(-1, 0).Activate
Wend
If (ActiveCell.Row = 1) And (ActiveCell.Value = "`") Then
ActiveCell.EntireRow.Delete
End If
End Sub
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment