Filtered Range.

Nigel Martin

Board Regular
Joined
Feb 17, 2002
Messages
133
Is there any way of having a macro copy an auto filtered range to a new worksheet then deleting its original data and saving itself as a new file? Thanks in advance. :(
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Use Data/Filter/Advanced Filter (?) and macro record the process.

Post a new message if you get probs.
 
Upvote 0
Something like this?

Code:
Sub Test()
    Dim Sh As Worksheet
    Dim Rng1 As Range
    Dim Rng2 As Range
    Dim WB As Workbook
    Set Sh = Worksheets("Sheet1")
    Set Rng1 = Sh.Range("A1:A" & Sh.Range("A65536").End(xlUp).Row).SpecialCells(xlCellTypeVisible)
    Set Rng2 = Sh.Range("A2:A" & Sh.Range("A65536").End(xlUp).Row).SpecialCells(xlCellTypeVisible)
    Set WB = Workbooks.Add
    Rng1.Copy
    With WB
        .Sheets(1).Range("A1").PasteSpecial xlPasteValues
        .SaveAs "NewFile.xls"
        .Close
    End With
    Rng2.EntireRow.Delete
    Rng1.AutoFilter
End Sub
 
Upvote 0

Forum statistics

Threads
1,221,706
Messages
6,161,406
Members
451,702
Latest member
Kc3475

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top