Save as PDF, add month folder

Broflovski

New Member
Joined
May 18, 2021
Messages
1
Office Version
  1. 2019
Platform
  1. Windows
Hi guys,

I'm a noobie with excel VBA but trying to learn, and i hope u guys could help me out.

So the code so far is saving the sheet as PDF to the current year folder, but i want to add a month folder into the year folder.
I tried a lot but get a lot of errors during adjusting the code :oops:

For ur info this code isn't written by myself only adjusted.

Thanks in advance!

VBA Code:
Sub savePDF():

Dim dte As Date
Dim numericalDate As Integer
Dim sourceDir As String
Dim year As Integer
Dim reportWs As Worksheet
Dim folder_exists As String
Dim fullFileName As String
Dim pdfFileName As String
Dim folderPath As String
Dim filePart As String

    'set worksheet as current
    Set reportWs = Worksheets("Lege Factuur")
    
    ''OR
    ''set reportWs = worksheets("Worksheet_name")
    
    'get year
    year = Trim(Str(Format(Date, "yyyy")))
    
    'get date
    dte = Now()
    
    'get numerical date
    numerical_date = Int(CDbl(dte))
    
    'source directory
    sourceDir = "E:\Paul\Facturen\"
    
    'check if folder exists, if it doesnt them create a new directory
    folder_exists = Dir(sourceDir & "\" & year, vbDirectory)
    If folder_exists = "" Then
        MkDir sourceDir & "\" & year
        folder_exists = Dir(sourceDir & "\" & year, vbDirectory)
    End If
    
    'get folder path
    folderPath = sourceDir & "\" & folder_exists
    
    'get filename (I dont think you should use the DATE and TIME as you have as the characters are invalid) Please change below format as you see fit.
    filePart = reportWs.Range("C14").Value & reportWs.Range("D14").Value & " " & reportWs.Range("B2").Value & " " & reportWs.Range("D18").Value
    fullFileName = filePart & " " & Format(Now(), "dd-mm-yyyy")
    
    'PDF save locaiton
    pdfFileName = folderPath & "\" & fullFileName
    
    'Save PDF
    reportWs.ExportAsFixedFormat Type:=xlTypePDF, Filename:=pdfFileName, Quality:=xlQualityStandard, _
            IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=True

End Sub
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Try this macro.
VBA Code:
Public Sub Save_PDF_In_Year_Month_Subfolder()

    Dim sourceDir As String
    Dim reportWs As Worksheet
    Dim folder_exists As String
    Dim fullFileName As String
    Dim pdfFileName As String
    Dim folderPath As String
    Dim filePart As String
    Dim yearSubfolder As String, monthSubfolder As String

    'set worksheet as current
    Set reportWs = Worksheets("Lege Factuur")
    
    'source directory
    sourceDir = "E:\Paul\Facturen\"
    
    yearSubfolder = sourceDir & year(Date) & "\"
    monthSubfolder = yearSubfolder & MonthName(Month(Date), Abbreviate:=True) & "\"
    
    'check if year subfolder exists, if it doesn't then create a new folder
    folder_exists = Dir(yearSubfolder, vbDirectory)
    If folder_exists = vbNullString Then MkDir yearSubfolder
    
    'check if month subfolder exists, if it doesn't then create a new folder
    folder_exists = Dir(monthSubfolder, vbDirectory)
    If folder_exists = vbNullString Then MkDir monthSubfolder
    
    'get filename (I dont think you should use the DATE and TIME as you have as the characters are invalid) Please change below format as you see fit.
    filePart = reportWs.Range("C14").Value & reportWs.Range("D14").Value & " " & reportWs.Range("B2").Value & " " & reportWs.Range("D18").Value
    fullFileName = filePart & " " & Format(Date, "dd-mm-yyyy") & ".pdf"
    
    'PDF save location
    pdfFileName = monthSubfolder & "\" & fullFileName
    
    'Save PDF
    reportWs.ExportAsFixedFormat Type:=xlTypePDF, Filename:=pdfFileName, Quality:=xlQualityStandard, _
            IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=True

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,958
Messages
6,122,475
Members
449,087
Latest member
RExcelSearch

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