How to save file with date and time in Excel?
When we work on a workbook, sometimes, we need to add the current date and time when we save the file. Maybe, you can type the date and time after the file name into the Save As dialog, but, here, I can introduce you an easy trick to auto deal with this job.
Save Excel file with date and time by using VBA code
Save Excel file with date and time by using VBA code
Except typing the date and time manually, the following VBA code can help you to add the current date and time to the filename automatically. Please do with following steps:
1. Hold down the ALT + F11 keys to open the Microsoft Visual Basic for Applications window.
2. Click Insert > Module, and paste the following code in the Module Window.
VBA code: Auto add date and time to file name
Sub filesave()
'Update 20141111
ActiveWorkbook.SaveAs ("C:\Users\dt\Desktop\my information\nov-kte-data " & Format(Now(), "DD-MMM-YYYY hh mm AMPM") & ".xlsx")
End Sub
3. And then press F5 key to run this code, the current date and time has been added after your active workbook name, see screenshot:
Note: In the above code, you need to change the file path and name to your need.
Related articles:
How to save Excel file with cell value?
How to show file path in title bar or toolbar in Excel?
Best Office Productivity Tools
Supercharge Your Spreadsheets: Experience Efficiency Like Never Before with Kutools for Excel
Kutools for Excel boasts over 300 features, ensuring that what you need is just a click away...
Supports Office/Excel 2007-2021 & newer, including 365 | Available in 44 languages | Enjoy a full-featured 30-day free trial.
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!





