Skip to content

Instantly share code, notes, and snippets.

@conholdate-gists
Created October 28, 2024 14:33
Show Gist options
  • Save conholdate-gists/73b761f69f4047aa698ecf8a5a329103 to your computer and use it in GitHub Desktop.
Save conholdate-gists/73b761f69f4047aa698ecf8a5a329103 to your computer and use it in GitHub Desktop.
Convert Excel to OpenDocument Spresheet in C# | Excel XLSX to ODS or FODS
// Load your source workbook
Workbook workbook = new Workbook("input.xlsx");
// Save as FODS file
workbook.Save("output.fods");
// Load your source workbook
Workbook workbook = new Workbook("input.xlsx");
// Save as ODS file
workbook.Save("output.ods");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment