Code Check

Miya

Well-known Member
Joined
Nov 29, 2008
Messages
662
Hi the below code is used to copy filtered data to sheet data, the code works as required but the only issue is that I want the headers which are in row 6 to also copied to sheet Data, how can i do this?

Code:
Sub CopyFilter()

Dim rng As Range
Dim rng2 As Range
 
With ActiveSheet.Range("A6")
    .AutoFilter Field:=2, Criteria1:="JP"
End With
 
With ActiveSheet.AutoFilter.Range
 On Error Resume Next
   Set rng2 = .Offset(1, 0).Resize(.Rows.Count - 1, 1) _
       .SpecialCells(xlCellTypeVisible)
 On Error GoTo 0
End With
If rng2 Is Nothing Then
   MsgBox "No data to copy"
Else
   Set rng = ActiveSheet.AutoFilter.Range
   rng.Offset(1, 0).Resize(rng.Rows.Count - 1).Copy _
     Destination:=Worksheets("Data").Range("A7")
End If
   ActiveSheet.ShowAllData
   

End Sub
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Untested. Replace
Code:
   rng.Offset(1, 0).Resize(rng.Rows.Count - 1).Copy _
     Destination:=Worksheets("Data").Range("A7")
with
Code:
   rng.Resize(rng.Rows.Count).Copy _
     Destination:=Worksheets("Data").Range("A7")
Hi the below code is used to copy filtered data to sheet data, the code works as required but the only issue is that I want the headers which are in row 6 to also copied to sheet Data, how can i do this?

Code:
Sub CopyFilter()

Dim rng As Range
Dim rng2 As Range
 
With ActiveSheet.Range("A6")
    .AutoFilter Field:=2, Criteria1:="JP"
End With
 
With ActiveSheet.AutoFilter.Range
 On Error Resume Next
   Set rng2 = .Offset(1, 0).Resize(.Rows.Count - 1, 1) _
       .SpecialCells(xlCellTypeVisible)
 On Error GoTo 0
End With
If rng2 Is Nothing Then
   MsgBox "No data to copy"
Else
   Set rng = ActiveSheet.AutoFilter.Range
   rng.Offset(1, 0).Resize(rng.Rows.Count - 1).Copy _
     Destination:=Worksheets("Data").Range("A7")
End If
   ActiveSheet.ShowAllData
   

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,516
Messages
6,119,980
Members
448,934
Latest member
audette89

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