Excel xlsx File fails to convert to html
D14.zip (891.9 KB)
Here is the code:
Dim filename = “D14.xlsx”
Dim sourcefilepath = "C:\\" & filename
Dim targetfilepath = "C:\\" & filename
Dim workbook As Workbook = New Workbook(sourcefilepath)
Dim options As Aspose.Cells.HtmlSaveOptions = New Aspose.Cells.HtmlSaveOptions()
workbook.Save(targetfilepath & "-output.html", options)
workbook.Dispose()