G
Guest
Hi All......
I got this from a search of this group, and it works fine.
My question is, can it be modified to give me a pop-up requesting a value to
search for and delete the rows containing it, instead of a hard-coded "total"?
Many TIA's
Vaya con Dios,
Chuck, CABGx3
I got this from a search of this group, and it works fine.
Hi Lawlerd, this code was posted by Frank Kabel, it should do what you
you need, it will delete every row with the word 'total' in column A...
Sub delete_rows()
Dim RowNdx As Long
Dim LastRow As Long
LastRow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).row
For RowNdx = LastRow To 1 Step -1
If Cells(RowNdx, "A").Value = "total" Then
Rows(RowNdx).Delete
End If
Next RowNdx
End Sub
My question is, can it be modified to give me a pop-up requesting a value to
search for and delete the rows containing it, instead of a hard-coded "total"?
Many TIA's
Vaya con Dios,
Chuck, CABGx3