Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm using this code to delete all the rows that have "RG" in the A
column. It should run through the entire range A1:A50 when I click a userform button. But instead of deleting them all with one click, its just deleting one of the "RG" rows each time I click the button (or even a few of the rows, but not all). Can anyone help? Private Sub RunReport_Click() For Each dept In Range("A1:A50") If dept.Value = "RG" Then Rows(dept.Row).Delete End If Next dept End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Delete/Remove Button | Excel Discussion (Misc queries) | |||
How to delete a button | Excel Discussion (Misc queries) | |||
Delete Data Button | Excel Discussion (Misc queries) | |||
How can I delete a macro when the Delete button is not active? | Excel Worksheet Functions | |||
How to delete rows when List toolbar's "delete" isnt highlighted? | Excel Worksheet Functions |