Macro to save as and create new folder named after the contents of a cell

Deekappa

New Member
Joined
Nov 19, 2018
Messages
12
Hi all

I don't have much experience with VBA, but I've been able to find most formulas I want with a quick search, and some slight modification. I'm a bit stuck on this one though.

I have a section of code below, which creates a new workbook based off an excel template, and saves it as a new workbook named after a cell.

What I would like it to also do, is to create a new folder (named after a cell in the original workbook which contains the macro) and save the new workbook in that folder. So every time the macro is clicked, a new workbook and subfolder is created, within my quotes folder. Hopefully that makes sense.

Code:
' Create new job template
    Dim wB As Workbook
    Dim nPath As String
    nPath = "I:\Mark B\New Job Template Resources\Quotes\" & ThisWorkbook.Sheets("Leads").Range("B23").Value
    Set wB = Workbooks.Add("I:\Mark B\New Job Template Resources\Custom Office Templates\Job Template.xltm")
    With wB
        .SaveAs Filename:=nPath & ".xlsm", FileFormat:=xlOpenXMLWorkbookMacroEnabled
    
    End With

Thanks in advance for the help, these forums are great. :)
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Try something along these lines
-amend to point at correct workbook, sheet and cells

Code:
    Dim wb As Workbook: Set wb = ThisWorkbook
    Dim qPath As String, fPath As String, sFolder As String, fName As String

    qPath = "I:\Mark B\New Job Template Resources\Quotes"
    sFolder = Range("A1").Value         'qualify with workbook & sheet
    fPath = qPath & "\" & sFolder
[COLOR=#696969][I] 'create subfolder   [/I][/COLOR]
    If Len(Dir(fPath, vbDirectory)) = 0 Then MkDir fPath
[I][COLOR=#696969] 'save file to that folder[/COLOR][/I]
    fName = Range("A2").Value           'qualify with workbook & sheet
    wb.SaveAs Filename:=fPath & "\" & fName & ".xlsm", FileFormat:=xlOpenXMLWorkbookMacroEnabled
 
Upvote 0
Thank you! Finished product below, worked perfectly.

Code:
        ' Create new job template
    Dim wb As Workbook: Set wb = ThisWorkbook
    Dim qPath As String, fPath As String, sFolder As String, fName As String


    qPath = "I:\Mark B\New Job Template Resources\Quotes"
    sFolder = Range("B23").Value
    fPath = qPath & "\" & sFolder
 'create subfolder
    If Len(Dir(fPath, vbDirectory)) = 0 Then MkDir fPath
 'save file to that folder
    fName = Range("B23").Value
    Set wb = Workbooks.Add("I:\Mark B\New Job Template Resources\Custom Office Templates\Job Template.xltm")
    wb.SaveAs Filename:=fPath & "\" & fName & ".xlsm", FileFormat:=xlOpenXMLWorkbookMacroEnabled
 
Upvote 0
Glad it is working for you. Some observations (may not matter, but best to be aware)

Range("B53") is not qualified with workbook or worksheet reference
- wb is initially ThisWorkbook so possibly wb.Sheets("Leads").Range("B53")

fName = sFolder would avoid going to the worksheet twice for same value (slightly faster)
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,551
Members
449,088
Latest member
davidcom

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