Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
The OpenDocument format (ODF) is a free and open file format for electronic office documents originally developed by Sun for the OpenOffice suite. OpenDocument Spreadsheet (ODS) is the file format for spreadsheet documents. OpenDocument is currently an OASIS and ISO standard.
Aspose.Cells for Node.js via C++ supports loading ODS, SXC, and FODS, which are supported by OpenOffice / LibreOffice Calc, and converting Ods, Sxc and Fods to Excel files.
const path = require("path");
const AsposeCells = require("aspose.cells.node");
// Load Excel workbook
const excelFilePath = path.join(__dirname, "book1.xlsx");
let workbook = new AsposeCells.Workbook(excelFilePath);
// Save as ODS file
workbook.save("ods_out.ods");
// Save as SXC file
workbook.save("sxc_out.sxc");
// Save as FODS file
workbook.save("fods_out.fods");
Aspose.Cells for Node.js via C++ supports converting Excel files to ODS, SXC, and FODS files. The code example below shows how to convert the template to ODS, SXC, and FODS files.
const path = require("path");
const AsposeCells = require("aspose.cells.node");
// The path to the documents directory.
const dataDir = path.join(__dirname, "data");
const filePath1 = path.join(dataDir, "book1.xlsx");
// Load your source workbook
const workbook = new AsposeCells.Workbook(filePath1);
// Save as ODS file
workbook.save("Out.ods");
// Save as SXC file
workbook.save("Out.sxc");
// Save as FODS file
workbook.save("Out.fods");
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.