Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/EPPlusSoftware/EPPlus
EPPlus-Excel spreadsheets for .NET
https://github.com/EPPlusSoftware/EPPlus
epplus excel net netcore netframework netstandard ooxml spreadsheet
Last synced: 11 days ago
JSON representation
EPPlus-Excel spreadsheets for .NET
- Host: GitHub
- URL: https://github.com/EPPlusSoftware/EPPlus
- Owner: EPPlusSoftware
- License: other
- Created: 2019-05-29T13:47:01.000Z (over 5 years ago)
- Default Branch: develop7
- Last Pushed: 2024-04-12T14:34:12.000Z (7 months ago)
- Last Synced: 2024-04-12T15:47:46.602Z (7 months ago)
- Topics: epplus, excel, net, netcore, netframework, netstandard, ooxml, spreadsheet
- Language: C#
- Homepage: https://epplussoftware.com
- Size: 18.5 MB
- Stars: 1,683
- Watchers: 50
- Forks: 260
- Open Issues: 88
-
Metadata Files:
- Readme: Readme.md
- Contributing: CONTRIBUTING.md
- License: license.md
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-starred-test - EPPlusSoftware/EPPlus - EPPlus-Excel spreadsheets for .NET (C# #)
- awesome-dotnet-core - EPPlus - 使用.NET创建高级Excel电子表格。 (框架, 库和工具 / 办公软件)
- jimsghstars - EPPlusSoftware/EPPlus - EPPlus-Excel spreadsheets for .NET (C# #)
- Awesome-Nuget-Packages - **EPPlus**
- fucking-awesome-dotnet-core - EPPlus - Create advanced Excel spreadsheets using .NET. (Frameworks, Libraries and Tools / Office)
- awesome-dotnet-core - EPPlus - Create advanced Excel spreadsheets using .NET. (Frameworks, Libraries and Tools / Office)
README
![Nuget](https://img.shields.io/nuget/v/epplus)
[![Download EPPlus from nuget](https://img.shields.io/nuget/dt/epplus?label=Nuget%20downloads)](https://www.nuget.org/packages/EPPlus/)
[![Build status](https://ci.appveyor.com/api/projects/status/fn3lqpxfjff3jq0v?svg=true)](https://ci.appveyor.com/project/EPPlusSoftware/epplus7)
# EPPlus 7## Announcement: new license model from version 5
EPPlus has from this new major version changed license from LGPL to [Polyform Noncommercial 1.0.0](https://polyformproject.org/licenses/noncommercial/1.0.0/).With the new license EPPlus is still free to use in some cases, but will require a commercial license to be used in a commercial business.
This is explained in more detail [here](https://www.epplussoftware.com/Home/LgplToPolyform).
Commercial licenses, which includes support, can be purchased at (https://www.epplussoftware.com/).
The source code of EPPlus has moved to a [new github repository](https://github.com/EPPlusSoftware/EPPlus)
## LicenseContext parameter must be set
With the license change EPPlus has a new parameter that needs to be configured. If the LicenseContext is not set, EPPlus will throw a LicenseException (only in debug mode).This is a simple configuration that can be set in a few alternative ways:
### 1. Via code
```csharp
// If you are a commercial business and have
// purchased commercial licenses use the static property
// LicenseContext of the ExcelPackage class :
ExcelPackage.LicenseContext = LicenseContext.Commercial;// If you use EPPlus in a noncommercial context
// according to the Polyform Noncommercial license:
ExcelPackage.LicenseContext = LicenseContext.NonCommercial;
using(var package = new ExcelPackage(new FileInfo("MyWorkbook.xlsx")))
{}
```
### 2. Via appSettings.json
```json
{
{
"EPPlus": {
"ExcelPackage": {
"LicenseContext": "Commercial" //The license context used
}
}
}
}
```
### 3. Via app/web.config
```xml
```
### 4. Set the environment variable 'EPPlusLicenseContext'
This might be the easiest way of configuring this. Just as above, set the variable to Commercial or NonCommercial depending on your usage.**Important!** The environment variable should be set at the user or process level.
## New features in EPPlus 7
* Calculation engine update to support array formulas. https://epplussoftware.com/en/Developers/EPPlus7
* Support for calculating legacy / dynamic array formulas.
* Support for intersect operator.
* Support for implicit intersection.
* Support for array parameters in functions.
* Better support for using the colon operator with functions.
* Better handling of circular references
* 90 new functions
* Faster optimized calculation engine with configurable expression caching.
* Breaking changes: Updated calculation engine, See [Breaking Changes in EPPlus 7](https://github.com/EPPlusSoftware/EPPlus/wiki/Breaking-Changes-in-EPPlus-7) for more information.
* Conditional Formatting improvements
* Improved performance, xml is now read and written on load and save.
* Cross worksheet support formula support.
* Extended styling options for color scales, data bars and icon sets.## Breaking Changes
See https://github.com/EPPlusSoftware/EPPlus/wiki/Breaking-Changes-in-EPPlus-7## Improved documentation
EPPlus 7 has a new web sample site available here: (https://samples.epplussoftware.com/) , Source code is available here: [EPPlus.WebSamples](https://github.com/EPPlusSoftware/EPPlus.WebSamples)
There is also a new sample project for four different docker images, [EPPlus.DockerSample](https://github.com/EPPlusSoftware/EPPlus.DockerSample).
EPPlus also has two separate sample projects for [C#](https://github.com/EPPlusSoftware/EPPlus.Samples.CSharp) and [Visual Basic](https://github.com/EPPlusSoftware/EPPlus.Samples.VB/) respectively.
There is also an updated [developer wiki](https://github.com/EPPlusSoftware/EPPlus/wiki).
The work with improving the documentation will continue, feedback is highly appreciated!