G Guest Dec 19, 2005 #1 In Microsoft Access 2000 I need to write a macro that includes the current date in the filename when saving the output.
In Microsoft Access 2000 I need to write a macro that includes the current date in the filename when saving the output.
V Van T. Dinh Dec 19, 2005 #2 You can use String concatenation like: "MyFileName" & "_" & Format(Date(), "yyyymmdd") * ".FileExtension"
You can use String concatenation like: "MyFileName" & "_" & Format(Date(), "yyyymmdd") * ".FileExtension"