Can I save file name including current date in Access?

S

SteveE@Cossor

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

You can use String concatenation like:

"MyFileName" & "_" & Format(Date(), "yyyymmdd") * ".FileExtension"
 
Top