Support for Excel 2013

Hello Team,


Excel 2013 file format type is deprecated in Aspose 8.3.1.0 version and also in the latest version 17.x version.

Is Excel 2013 file type not supported or which version should be used ?

Thanks for the support.


Karthik

Hi,


Thanks for your posting and using Aspose.Cells.

If I am not mistaken, by Excel 2013, you meant Excel 2003.

So, if you want to save your Workbook in Excel 2003 format, then save it like this.

Java
workbook.save(“output.xls”, SaveFormat.EXCEL_97_TO_2003);

Thank you for the prompt reply Shakeel.


But we meant as 2013 only. If we want to save excel in 2013 / xlsx format which Aspose version for Java to be used ?

Thanks in advance.

Hi,


Thanks for your clarification and using Aspose.Cells.

You will then save in XLSX format. From Excel 2007 till Excel 2016, the format name is XLSX.

XLSX is a newer format than XLS format, so you will save the workbook like this.

Java
<span style=“color: rgb(128, 0, 128); font-family: “Courier New”; font-size: small; background-color: rgb(255, 255, 255);”>workbook.save(“output.xls”, SaveFormat.XLSX);