VBA - Copy Filtered worksheet to another workbook

gldurand

Board Regular
Joined
Jun 8, 2006
Messages
178
Office Version
  1. 2016
Platform
  1. Windows
Hi Guru's

I am using this code someone developed for me to copy active sheet in current workbook to another workbook.
It works perfectly when I don't have any filters. The minute use filters on the original worksheet and execute the code my copied file is completely unreadable

Can someone assist with modifying this code to take into consideration if I have filtered columns

Dim extension As String

extension = ".xlsx"

' Copy Active tab to another file

' Application.ScreenUpdating = False
Application.DisplayAlerts = False
Application.CopyObjectsWithCells = False ' Does not copy Macro objects

ActiveSheet.Copy
With ActiveSheet.UsedRange
.Value = .Value
.Validation.Delete ' Removes all Drop Down Lists
End With

Set wbNew = ActiveWorkbook
wbNew.SaveAs ThisWorkbook.Path & "\" & Format(Date, "yyyy-mm-dd") & " " & ActiveSheet.Range("B3") & extension
' wbNew.SaveAs ThisWorkbook.Path & " " & ActiveSheet.Range("B3") & extension
wbNew.Close True

Application.DisplayAlerts = True
Application.CopyObjectsWithCells = True

Application.ScreenUpdating = True

Any assistance would be greatly appreciated
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Hi @gldurand

Check this:
VBA Code:
Sub COPY_SHEET()
  Dim extension As String
  Dim sh1 As Worksheet
  Dim wbNew As Workbook
 
  extension = ".xlsx"
 
  Application.ScreenUpdating = False
  Application.DisplayAlerts = False
  Application.CopyObjectsWithCells = False ' Does not copy Macro objects
 
  Set sh1 = ActiveSheet
 
  'create a new workbook with one sheet
  Set wbNew = Workbooks.Add(xlWBATWorksheet)
 
  ' Copy Active tab to another file
  sh1.Cells.Copy
  wbNew.Sheets(1).Range("A1").PasteSpecial xlPasteValues
  wbNew.Sheets(1).Range("A1").PasteSpecial xlPasteFormats
 
  wbNew.SaveAs ThisWorkbook.Path & "\" & Format(Date, "yyyy-mm-dd") & " " & sh1.Range("B3") & extension
  wbNew.Close False
 
  Application.DisplayAlerts = True
  Application.CopyObjectsWithCells = True
  Application.ScreenUpdating = True
End Sub

Note Code Tag:
In future please use code tags when posting code.
How to Post Your VBA Code it makes your code easier to read and copy and it also maintains VBA formatting.

;)
 
Upvote 0
Thanks Dante.

Works like a charm!! Greatly appreciated :) Have a wonderful day
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

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