Convert Excel to HTM when running Access

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

Guest

I would like to save an existing Excel file to HTM format while in Access.
Is it possible for this to be done?
 
Yes, you can create excel instance with code, open excel file there and then
save it as HTML using saveas method:

..SaveAs Filename:= "C:\xxx.htm", FileFormat:=xlHtml
 
Back
Top