A Anar Member Sep 12, 2011 #1 Hello, Can anyone suggest a code to change the date in Excel file name daily. File name is in this format: FileName_Date FileName will stay the same each day, Date should change every day BR, Anar
Hello, Can anyone suggest a code to change the date in Excel file name daily. File name is in this format: FileName_Date FileName will stay the same each day, Date should change every day BR, Anar
A Anar Member Sep 12, 2011 #2 This post should be saved in VBA & Macros forum, sorry for that. I could not edit it and save in VBA & Macros forum
This post should be saved in VBA & Macros forum, sorry for that. I could not edit it and save in VBA & Macros forum
X xld Member Sep 12, 2011 #3 [pre] Code: Activeworkbook.SaveAs "myfile_" & Format(Date,"yyyy_mm_dd") [/pre]