Workbook with several worksheets

filiplenox

New Member
Joined
Jan 28, 2014
Messages
12
Hi,

could youhelp me with the following excel problem:

I have aexcel workbook with several worksheets (Workbook X with worksheets A1 , A2, B1,B2, C1, C2…). I would like to write a macro, which can copy each pair ofworksheets (i.e. A1& A2; B1 & B2…..) and that saves the new workbookswith the “Letter-name” of the relevant worksheet pair (e.g. the new workbookthat contains worksheets A1 and A2 should be named “A”; the new workbook thatcontains worksheets B1 and B2 should be named “B” and so on).
The newmacro should keep the original workbook X intact (therefore, the macro shouldcopy the worksheets and not cut them out).
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Try fitting this into your code:

Worksheets(Array("A1", "A2")).Copy
ActiveWorkbook.SaveAs ("A.xlsx")
ActiveWorkbook.Close
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,323
Members
452,635
Latest member
laura12345

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