Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way to automatically delete any row that has a 0 in both of
specified columns (i.e. BF and BG)? Thanks for any help -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
try the following macro: Sub delete_rows() Dim lastrow As Long Dim row_index As Long Application.ScreenUpdating = False lastrow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row For row_index = lastrow - 1 To 1 Step -1 If Cells(row_index, "BF").Value= 0 and _ Cells(row_index, "BG").Value= 0 then Rows(row_index).delete End If Next Application.ScreenUpdating = True End Sub -- Regards Frank Kabel Frankfurt, Germany Is there a way to automatically delete any row that has a 0 in both of 2 specified columns (i.e. BF and BG)? Thanks for any help. --- Message posted from http://www.ExcelForum.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
deleting entire rows with the same cell value in the first column | Excel Discussion (Misc queries) | |||
Deleting rows based on multiple criteria | Excel Programming | |||
Deleting entire rows | Excel Programming | |||
Deleting rows based on cell criteria | Excel Programming | |||
Deleting rows based on criteria | Excel Programming |