How I can open a report in a html format?

G

galsaba

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

galsaba
 
O

Ofer

Use this code

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