Hello I have a question about I wanna transfer a file from xslx to ods use aspose.cells(for .net), my code as below
Workbook wb = new Workbook(“XlsxFile”);
OdsSaveOptions Options = new OdsSaveOptions(Aspose.Cells.SaveFormat.ODS);
Wb.Save(“OutputOdsFile”, Options);
but not work when the ods file include linebreak(\n)
Can yous tell me how to handle this problem, tnks