Thank you for the quick reply arlu!!
your code works good... but the result is not what I need... you copy the row... and I need only A and N columns from Sheet3 to be pasted to A and B in Sheet2...
here is what I have
Sub ssss()
Sheets(3).Select
LR = Range("A" & Rows.Count).End(xlUp).Row
Sheets(3).Range("$A$2:$N$" & LR).AutoFilter field:=6, Criteria1:=">30", Operator:=xlAnd
Range("A2:A37144,N2:N37144").copy
Sheets(2).Select
Range("A3").Select
ActiveSheet.Paste
End Sub
this seems to work good... but how can I change
Range("A2:A37144,N2:N37144").copy
not to be restricted to row number "37144" ...
or any other better suggestion
Bookmarks