Macro - Saving a report as a .txt

  • Thread starter Thread starter The Boondock Saint
  • Start date Start date
T

The Boondock Saint

Does anyone know how to save a report to a .txt file in a automated kind of
way.... a macro etc.... so i dont have to name it each time etc...

Look forward to your thoughts
 
Does anyone know how to save a report to a .txt file in a automated kind of
way.... a macro etc.... so i dont have to name it each time etc...

Look forward to your thoughts

Look up the OutputTo method in VBA help:

DoCmd.OutputTo acOutputReport, "YourReportNameHere", acFormatTXT,
"c:Path to document\DocumentName.txt"
 

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