Excel macro, cell contents file name, looping?

Bien1986

New Member
Joined
Jan 16, 2011
Messages
4
Hello,

I’m not certain how to word this, but here is my attempt:

I have a template in an excel worksheet that needs to be saved using a thousand plus plan names which are listed in another excel sheet under column c.

basically i want to run a macro that will pull the name out of column c (on the list worksheet) and repeatedly save the template file using the plan names listed in column c on the (list worksheet). So once all is complete, there will be a thousand plus files saved in a folder that will all have the template on them.

any advice on how to write a code to do that? (I’m using the developer tab/vba in excel)

-I’m very new to creating macros, so far i've only recorded macros, never written. (i've tweaked per book instructions and I’m still learning language etc). I think I need to add something called a loop to the macro text.
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
I assumed your list of file names is in a separate workbook from the template workbook.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p></o:p>
<o:p></o:p>
Create a Named Range for the list of names Call it “myNameList”.<o:p></o:p>
<o:p></o:p>
Copy this code to the sheet code in the workbook that has the list of names.<o:p></o:p>
<o:p></o:p>
Open your template. And run the code. Suggest using a short list of names for testing..


Code:
Option Explicit
Sub CreateWorkbooks()
    Dim ListItem As Range
    Dim sFile As String
    Dim sPriorFile As String
    Dim bFirst As Boolean
    bFirst = True
    For Each ListItem In Range("myNameList")
        sFile = ListItem & ".xls"
        If bFirst Then
            bFirst = False
            Workbooks("myTemplate.xls").SaveAs FileName:="C:\" & sFile
        Else
            Workbooks(sPriorFile).SaveAs FileName:="C:\" & sFile
        End If
        sPriorFile = sFile
    Next ListItem
End Sub
 
Upvote 0
thanks bill,

I tweaked it to show the name of my list, and i also put the file path the macro needs to follow but i'm getting a vba error 400.

i did an error tap and it reads, "label not defined" ?
 
Last edited:
Upvote 0
On a side note, make sure you don't have any restricted chars in the list, a : would throw a spanner in the works.
 
Upvote 0
"label not defined" I had no lables in the code I posted. Did you add any lables say for error checking?

Copy and post your code so I can take a look at it.
 
Upvote 0
here is what i have, i'm not certain if i need to insert the path to "where" the folders will be saved. (i'm doing practice test with files on my pc before i attemp with shared drive folders)

i entered error tap to see why 400 prompt was occuring, it highlights the "sub createworkbooks()" section of the macro

here is the path for where i'm storing info
C:\Users\Valarie\Documents\1 2010 bills folder

see code below. thanks so much for your help.

Option Explicit
Sub CreateWorkbooks()
Dim ListItem As Range
Dim sFile As String
Dim sPriorFile As String
Dim bFirst As Boolean
On Error GoTo Errorcatch
End Sub
bFirst = True
For Each ListItem In Range("myNamelist")
sFile = ListItem & ".xls"
If bFirst Then
bFirst = False
Workbooks("template.xls").SaveAs Filename:="C:\" & sFile
Else
Workbooks(sPriorFile).SaveAs Filename:="C:\" & sFile
End If
sPriorFile = sFile
Next ListItem
End Sub
 
Upvote 0
This is your problem:

On Error GoTo Errorcatch


You have no Errorcatch label

Try putting this after your last End If (including the : )

ErrorCatch:

Note, there may be a better place for the label but I have not really looked through the code thouraghly.

Edit: On second thoughts for debugging just comment the on error line out, this way when it errors you will be given the option to debug and you can see what the problem is (Which I am still pretty sure is invalid chars)
 
Upvote 0
YEs, you need teh full path

Code:
If bFirst Then
bFirst = False
Workbooks("template.xls").SaveAs Filename:="C:\Users\Valarie\Documents\1 2010 bills\" & sFile
Else
Workbooks(sPriorFile).SaveAs Filename:="C:\Users\Valarie\Documents\1 2010 bills\" & sFile
End If
 
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,746
Members
448,989
Latest member
mariah3

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