hi,
The following is my code.
oSheet.Range("A1".AutoFilter field:=1, _
Criteria1:="Application", _
VisibleDropDown:=False
I'm trying to find the rows in first Column which contains the string "Application". After using the AutoFilter, what is the method to retrieve the rows of the autofiltered rows?
I have tried this:
oSheet.AutoFilter.Range.Address
But it just keep returns me all rows.
Any hint of how I can get the specified rows?
Thanks in advance.
The following is my code.
oSheet.Range("A1".AutoFilter field:=1, _
Criteria1:="Application", _
VisibleDropDown:=False
I'm trying to find the rows in first Column which contains the string "Application". After using the AutoFilter, what is the method to retrieve the rows of the autofiltered rows?
I have tried this:
oSheet.AutoFilter.Range.Address
But it just keep returns me all rows.
Any hint of how I can get the specified rows?
Thanks in advance.