Macro to save files in a workbook as Worksheets

Bostiao

New Member
Joined
Feb 8, 2007
Messages
22
I have many cost centres in a department and i have many departments.

I am trying to create a workbook for each department with its various cost centres.
So what i need is a macro which will take the cost centre from a list and save it in one workbook as a worksheet and the name of the worksheet will be the cost centre.

Your help will be greatly appreciated..thanks
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
This code assumes the names you want are in column C2 through C whatever:

Code:
Sub insrtSheet()

For Each i In Range("C2:C" & Range("C65536").End(xlUp).Row)

If i.Value = "" Then Exit For
    Sheets.Add.Name = i.Value
Next

End Sub

Hope this helps!

Dave
 
Upvote 0

Forum statistics

Threads
1,214,426
Messages
6,119,414
Members
448,895
Latest member
omarahmed1

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