Save file in new location.

Nanogirl21

Active Member
Joined
Nov 19, 2013
Messages
330
Office Version
  1. 365
Platform
  1. Windows
Is there a VBA code that I can add the end of my macro that will save the file with todays date (YYYY-MM-DD format) at a specific location? The location is different than the orginal document.

Location: C:\Users\nanogirl\Desktop\2018 WIP\Reports
File Name Example: Metrics 2018-05-24.xlsb

Thank You
 
Re: Save file in new locaiton.

Assuming the active workbook name is currently "Group Lunch.xlsb" (without a date) then this will save it as "Group Lunch 2018-05-30.xlsb" in the specified folder.

Code:
    Dim p As Long, fileName As String
    
    With ActiveWorkbook
        p = InStrRev(.Name, ".")
        fileName = "C:\path\to\folder\" & Left(.Name, p - 1) & Format(Date, " yyyy-mm-dd") & Mid(.Name, p)
        .SaveAs fileName
    End With
 
Upvote 0

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Re: Save file in new locaiton.

Assuming the active workbook name is currently "Group Lunch.xlsb" (without a date) then this will save it as "Group Lunch 2018-05-30.xlsb" in the specified folder.

Code:
    Dim p As Long, fileName As String
    
    With ActiveWorkbook
        p = InStrRev(.Name, ".")
        fileName = "C:\path\to\folder\" & Left(.Name, p - 1) & Format(Date, " yyyy-mm-dd") & Mid(.Name, p)
        .SaveAs fileName
    End With

Worked Perfectly! Thank you.
 
Upvote 0

Forum statistics

Threads
1,215,212
Messages
6,123,649
Members
449,111
Latest member
ghennedy

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