VBA Saving Filename with YYYY + 1

Jambi46n2

Active Member
Joined
May 24, 2016
Messages
260
Office Version
  1. 365
Platform
  1. Windows
The Code Below Saves the File as "2019 Rate Volume - 2018-08-21.xlsx"

I would like to have it saved like this "2019 Rate Volume - 2019-08-21.xlsx"

How is the best way for me to go about this?

Thank you in advance.

Code:
'Date Save Update Definitions
    MonthPath = Format(Month(Date), "00") & " - " & MonthName(Month(Date)) '& " " & YearDate   'ALTER YearDate HERE
    ShareMonthPath = Format(Month(Date), "00") & " - " & MonthName(Month(Date))   'ALTER YearDate HERE
    dte1 = Format(Date, "yyyy-mm-dd")
    dte2 = Format(Date, "yyyy-mm")
    
'Establish Date/Time for Non-Overwrite File Save
    If Hour(Now) > 12 Then
            Tme = Hour(Now) - 12 & " pm"
        Else
            Tme = Hour(Now) & " am"
    End If


'Save As New File on Share Drive
    If Dir("\\SaveLocation\New Calculation\" & YearDate & "\" & MonthPath & "\" & YearDate & " Rate Volume - " & dte1 & ".xlsx") = "" Then  'ALTER YearDate HERE
            RateV.SaveAs Filename:= _
                "\\SaveLocation\New Calculation\" & YearDate & "\" & MonthPath & "\" & YearDate & " Rate Volume - " & dte1 & ".xlsx", FileFormat:=xlOpenXMLWorkbook, CreateBackup:=False  'ALTER YearDate HERE
        Else
            RateV.SaveAs Filename:= _
                "\\SaveLocation\New Calculation\" & YearDate & "\" & MonthPath & "\" & YearDate & " Rate Volume - " & dte1 & " - " & Tme & ".xlsx", FileFormat:=xlOpenXMLWorkbook, CreateBackup:=False   'ALTER YearDate HERE
    End If
 
Last edited:

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Try the below code

dte1 =Format(DateAdd("yyyy", 1, Date), "yyyy-mm-dd")
 
Upvote 0

Forum statistics

Threads
1,214,945
Messages
6,122,393
Members
449,081
Latest member
JAMES KECULAH

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