Created
October 28, 2024 14:33
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Load your source workbook | |
Workbook workbook = new Workbook("input.xlsx"); | |
// Save as FODS file | |
workbook.Save("output.fods"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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