SaveAs filename not able to save multiple sheets to a new workbook

ChanL

Board Regular
Joined
Apr 8, 2021
Messages
65
Office Version
  1. 2019
Platform
  1. Windows
Hi all,
I have a template with four sheets with name "main", "part 1", "part 2", "part 3"
After i put in info in sheet part 1, part 2 , part3, i would like to save the sheets into a new workbook (all sheets in the same workbook)
i came up with a VBA code but it only manage to save sheet part 3.

VBA Code:
Set dessh1=thisworkbook.sheets("part 1")
set dessh2=thisworkbook.sheets("part 2")
set dessh3=thisworkbook.sheets("part 3")

dessh1.copy
dessh2.copy
dessh3.copy
Activeworkbook.saveas filename := "EKYC" & "report name" & ".xlxs"
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
How about
VBA Code:
   ThisWorkbook.Sheets(Array("part 1", "part 2", "part 3")).Copy
   Activeworkbook.saveas filename := "EKYC" & "report name" & ".xlxs"
 
Upvote 0
Solution

Forum statistics

Threads
1,215,655
Messages
6,126,051
Members
449,283
Latest member
GeisonGDC

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