How I can open a report in a html format?

  • Thread starter Thread starter galsaba
  • Start date Start date
G

galsaba

I want my report to be at html format and not mdb format.
How this is possible?

galsaba
 
Use this code

DoCmd.OutputTo acOutputReport, "ReportName", acFormatHTML,
"c:\ReportName.html"
 
Back
Top