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

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
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,226,737
Messages
6,192,737
Members
453,753
Latest member
SORD

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