Developers

Tutorials, documentation and other developer resources

EPPlus crash course

  • The ExcelPackage class is the entry point to a workbook. Should be instanciated in a using statement.

        using(var package = new ExcelPackage(@"c:\temp\myWorkbook.xlsx"))
{
    var sheet = package.Workbook.Worksheets.Add("My Sheet");
    sheet.Cells["A1"].Value = "Hello World!";

    // Save to file
    package.Save();
}

        
1/5

Documentation

EPPlus source code docs

Documentation generated from the xml-comments in our code.

EPPlus Sample project

Our new, restructured sample project contains more examples and documentation than before.

Samples C# , Samples VB.NET

EPPlus at Nuget

Install EPPlus from Nuget.

EPPlus at Nuget
Getting started (developer wiki)

Support

Support from the EPPlus team

Customers with a valid license have access to support from EPPlus Software via our support system.

Learn more

Community users

There is an active community at Stackoverflow.

Browse EPPlus Q&A at Stackoverflow