Hello,
I worked thru the previous thread and came up with
When I watched the code work, it struck me that Autofilter is working like a sql statement:
select * from rows where ????
with the result becoming visible.
Is this what is going on behind the scenes or is it just similar behavior?
This old world keeps spinning round - It's a wonder tall trees ain't layin' down
I worked thru the previous thread and came up with
Code:
Sub copythis()
Selection.AutoFilter Field:=1, Criteria1:="<>,", Operator:=xlAnd
Sheets("sheet1").[A1].CurrentRegion.SpecialCells(xlCellTypeVisible).Copy _
Destination:=Sheets("sheet2").[A1]
End Sub
select * from rows where ????
with the result becoming visible.
Is this what is going on behind the scenes or is it just similar behavior?
This old world keeps spinning round - It's a wonder tall trees ain't layin' down