FileFormat.Cells for .NET
C# .NET API for Effortless Creation & Customisation of Workbooks
Create & customize Spreadsheets easily with FileFormat.Cells, an Open-Source .NET API. Simplify workbook generation & automation with this lightweight library.
FileFormat.Cells for .NET is a powerful and user-friendly Open-Source .NET API designed for effortless creation and customization of Microsoft Excel Spreadsheets. Embrace the simplicity of this intuitive C# library to effortlessly create and tweak Excel files using just a handful of lines of code.
Experience the ease and power of our lightweight solution, designed to install smoothly and provide a comprehensive range of features to meet all your spreadsheet needs. Built on the reliable OpenXML SDK recommended by Microsoft, FileFormat.Cells humbly acts as a convenient wrapper, making it simpler to harness its advanced capabilities.
Crafted with developers in mind, this Open-Source .NET library empowers you to effortlessly automate the creation and editing of Excel Spreadsheets, all without relying on third-party dependencies. Bid farewell to the complexities of external libraries and welcome the simplicity and effectiveness offered by FileFormat.Cells.
Getting Started with FileFormat.Cells for .NET
The recommended way to install FileFormat.Cells for .NET is using NuGet. Please use the following command for a smooth installation.
Install FileFormat.Cells for .NET via NuGet
NuGet\Install-Package FileFormat.Cells
You can also download it directly from GitHub.Creating an Excel Spreadsheet Programmatically
The following code snippet creates an empty Excel Spreadsheet programmatically.
Create an Excel Spreadsheet via .NET API
// Create an object of the Workbook class.
Workbook workbook = new Workbook();
// Call the Save method to save the Excel file onto the disk.
workbook.Save("/spreadsheet.xlsx");