Convert Excel to HTM when running Access

T

TerryM

I would like to save an existing Excel file to HTM format while in Access.
Is it possible for this to be done?
 
A

Alex Dybenko

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
 
Top