Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hey guys, is there a better way to do something like this? i have a for
statement checking an entire column for a value of zero, and if it finds that value, i want it to check a different column for a value of <= 1, and if it finds that, cut the row out and paste it somewhere else. heres my (horrible) code: Sheets("ReArranged - No Formulas").Select For Each rng In Range("N:N") If rng.Value = 0 Then For Each rng2 In Range("Y:Y") If rng2.Value <= 1 Then rng2.EntireRow.Cut Destination:=Sheets("DO NOT USE").Range("A" & Sheets("DO NOT USE").Rows.Count).End(xlUp).Offset(1, 0) End If Next rng2 End If Next rng |