Excel VBA: Save As with Filename/Filepath/Date&Time

Bluesguy07

New Member
Joined
Mar 11, 2016
Messages
28
Hello all,

I am currently needing to add a "save as" function to add both the date, and hour to the filename. Currently, the script I have is below.

Code:
Sub SaveWorkbook()

 Dim FilePath As String
    Dim NewName As String


    FilePath = "C:FILEPATH": NewName = FilePath & "Pack Labels" & Format(Date, "_MM-DD-YYYY") & ".xlsm"


    ActiveWorkbook.SaveAs Filename:=NewName, FileFormat _
    :=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False

End Sub

I want to add the Hour with an AM/PM or it could be in 24hr format. That portion doesn't matter to me. However, everything I try fails. The code above will save it in the proper folder, with the proper file name, and the proper date. I just need help in adding the time to it.

*NOTE* I have looked through the forum as I normally do. However, nothing I have found helps for this situation.
 
Last edited:

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Change Date to Now()

Format(Now(), "_hh-MM-DD-YYYY") & ".xlsm"
 
Upvote 0

Forum statistics

Threads
1,215,559
Messages
6,125,517
Members
449,236
Latest member
Afua

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