I have a workbook with around 10 sheets, and I would like a macros that creates a new workbook with 4 sheets of the original.
I have this:
Sheets("1").Range("A1:xfd200").Copy
Workbooks.Add
ActiveSheet.Paste Destination:=Range("A1")
But that only creates a new workbook with one of the sheets I need.
I would appreciate any help.
Thanks!!