Conert exsist xlsx file to xml Spreadseet

Hello! I have xlsx file and I want convert it to XML SpreadSheet for open in to OpenOffice or another programm. How I make it?

Hi Vera,


Thanks for your inquiry. I’m moving your post to the related forum; Aspose.Cells. There one of my colleagues will answer you soon.

Best Regards,

Hi,


Yes, sure, you may convert and XLSX file to SpreadsheetML file format, see the following sample code:

Workbook workbook = new Workbook(“e:\test\Myfile.xlsx”);
workbook.Save(“e:\test\out.xml”, SaveFormat.SpreadsheetML);

See the documents for supported file formats and conversions:

Thank you