Hi,
I know that the answer to this is simple, but I can't find the answer!!
I have the following code:
Dim rng As Range
Set rng = ActiveSheet.AutoFilter.Range
rng.Copy _
Destination:=Worksheets("Sheet2").Range("A1")
This copies ALL of the filtered Rows into a separate worksheet.
What I want to do is:
1) COPY THE 1st 100 rows of the range.
2) Copy the 100 rows as a separate worksheet in a another Workbook that is already opened in Excel
Any answers?
Thanks!
Dave
Any answers?
I know that the answer to this is simple, but I can't find the answer!!
I have the following code:
Dim rng As Range
Set rng = ActiveSheet.AutoFilter.Range
rng.Copy _
Destination:=Worksheets("Sheet2").Range("A1")
This copies ALL of the filtered Rows into a separate worksheet.
What I want to do is:
1) COPY THE 1st 100 rows of the range.
2) Copy the 100 rows as a separate worksheet in a another Workbook that is already opened in Excel
Any answers?
Thanks!
Dave
Any answers?