ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Delete specified critria rows (https://www.excelbanter.com/excel-discussion-misc-queries/18519-delete-specified-critria-rows.html)

rn

Delete specified critria rows
 
Hi

What code can I use to delete rows based on the values of
two fields/columns on the same row. (if cell A1 is not
blank and cell B1=0 delete)

Thanks.

Bob Phillips

Insert a row at the top, and then a spare column, add

=AND(A2<"",B2=0)

Select this column and Menu DataAuItofilter.
Click the dropdown and select TRUE from the list
Delete all visible rows, including row 1

All done


--

HTH

RP
(remove nothere from the email address if mailing direct)


"rn" wrote in message
...
Hi

What code can I use to delete rows based on the values of
two fields/columns on the same row. (if cell A1 is not
blank and cell B1=0 delete)

Thanks.




Jason Morin

Sub DeleteRows()
Dim iLastRow As Long
Dim i As Long

Application.ScreenUpdating = False

iLastRow = Cells(Rows.Count, "A").End(xlUp).Row
For i = iLastRow To 1 Step -1
With Cells(i, "A")
If .Value < "" And _
.Offset(0, 1).Value = 0 Then
.EntireRow.Delete
End If
End With
Next i

Application.ScreenUpdating = True

End Sub

---
HTH
Jason
Atlanta, GA

-----Original Message-----
Hi

What code can I use to delete rows based on the values

of
two fields/columns on the same row. (if cell A1 is not
blank and cell B1=0 delete)

Thanks.
.


rn

Thanks for your help.


-----Original Message-----
Sub DeleteRows()
Dim iLastRow As Long
Dim i As Long

Application.ScreenUpdating = False

iLastRow = Cells(Rows.Count, "A").End(xlUp).Row
For i = iLastRow To 1 Step -1
With Cells(i, "A")
If .Value < "" And _
.Offset(0, 1).Value = 0 Then
.EntireRow.Delete
End If
End With
Next i

Application.ScreenUpdating = True

End Sub

---
HTH
Jason
Atlanta, GA

-----Original Message-----
Hi

What code can I use to delete rows based on the values

of
two fields/columns on the same row. (if cell A1 is not
blank and cell B1=0 delete)

Thanks.
.

.


rn

Thanks.


-----Original Message-----
Insert a row at the top, and then a spare column, add

=AND(A2<"",B2=0)

Select this column and Menu DataAuItofilter.
Click the dropdown and select TRUE from the list
Delete all visible rows, including row 1

All done


--

HTH

RP
(remove nothere from the email address if mailing direct)


"rn" wrote in

message
...
Hi

What code can I use to delete rows based on the values

of
two fields/columns on the same row. (if cell A1 is not
blank and cell B1=0 delete)

Thanks.



.



All times are GMT +1. The time now is 03:24 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com