Can I save file name including current date in Access?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In Microsoft Access 2000 I need to write a macro that includes the current
date in the filename when saving the output.
 
You can use String concatenation like:

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top