Yes and Yes. What is a "naming sequence" and to what do you want it
assigned? HTH Otto
I want to name each file after each cost center. So what I mean is if I have
data subtotalled by Cost center as follows:
Cost Center Asset No. Asset Value Tag No. etc.
Can I create one workbook for each cost center, named after the cost center.
> Yes and Yes. What is a "naming sequence" and to what do you want it
> assigned? HTH Otto
[quoted text clipped - 3 lines]
> > I
> > have a naming sequence assigned to this?
Otto Moehrbach - 18 May 2008 03:25 GMT
Can I assume that you want a new file created and named for each entry in
Column A? Otto
> I want to name each file after each cost center. So what I mean is if I
> have
[quoted text clipped - 14 lines]
>> > I
>> > have a naming sequence assigned to this?
Otto Moehrbach - 18 May 2008 03:40 GMT
This macro will do what you want. I chose "C:\The Folder" as the path.
Otto
Sub CreateWorkbooks()
Dim ThePath As String
Dim rColA As Range
Dim i As Range
Application.ScreenUpdating = False
ThePath = "C:\The Folder\"
Set rColA = Range("A2", Range("A" & Rows.Count).End(xlUp))
For Each i In rColA
Workbooks.Add
ActiveWorkbook.SaveAs Filename:=ThePath & i.Value & ".xls"
ActiveWorkbook.Close
Next i
Application.ScreenUpdating = True
End Sub
> I want to name each file after each cost center. So what I mean is if I
> have
[quoted text clipped - 14 lines]
>> > I
>> > have a naming sequence assigned to this?