Invoke 'SaveAs' in excel to save sheet as '.htm' format.

12 views (last 30 days)
I'm using ActxServer to write some content to an excel sheet and add images to it in different tabs. If I manually use 'SaveAs' option in excel, the sheet can be saved as '.htm' file. But I want to invoke the same function and save my excel sheet as a '.html' file using ActxServer. How to do that?

Answers (1)

Cris LaPierre
Cris LaPierre on 11 Nov 2021
I found this answer from 2009 that gives insight into how to do this. The optional variant argument "43" is used to specify an older version of MATLAB.
Knowing that, you can use this table to find the correct value for the format you desire. For xlHtml, it is 44.
The final code should look something like this
workbook.SaveAs('filename.htm',44);

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!