EPPlus.Core
EPPlus.Core copied to clipboard
EPPlus.Core is an unofficial port of the EPPlus library to .NET Core
I'm using EPPlus.Core to load in a xlsm file, insert values into the file, then save it to a stream which is sent as an email attachment. The process fails...
# Summary of the issue i have a file with 250 column if i want to work with this file i must write a command for a column to read...
How on earth could this be used (as expected) in an asp.net core 2.1 web app with angular project template if the dependencies include .net framework versions 4, 4.5 and...
# Summary of the issue i have a export excel project with picture,os windows is ok ,but linux is wrong with no Unresponsive,the server cpu is increase to 99%,the picture...
Exception thrown while executing the following snippet of code: `workSheet.Cells[1, 1].Style.Fill.PatternType = ExcelFillStyle.Solid;` `workSheet.Cells[1, 1].Style.Fill.BackgroundColor.SetColor(System.Drawing.Color.DarkBlue);` Exception: System.MissingMethodException: void OfficeOpenXml.Style.ExcelColor.SetColor(System.Drawing.Color) occurred Environment: - API Android Emulator Oreo 8.1 - API 27...
[4.5.0.0 Beta 1](https://github.com/JanKallman/EPPlus/issues/46) * .Net Core support. https://www.nuget.org/packages/EPPlus/4.5.0-beta ``` > dotnet add package EPPlus --version 4.5.0-beta ```
I am trying to generate the excel sheet, using EPPlus.Core in dotnet core 2.0 framework. The generation works fine on local machine running windows. When I test the same on...
The LoadFromDataReader will throw an invalid row number error if you try to load an empty table without headers. If you load the empty table with headers then the load...
With the latest version of EPPlus.Core (1.5.4) I receive the following exception: >Error Exception while loading assemblies: System.IO.FileNotFoundException: Could not load assembly 'System.Drawing.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. Perhaps it doesn't exist...
I am using the Worksheet and the workbook and calling the calculate() method for every sheet and for the workbook: ``` foreach (var worksheet in eppWorlSheets) { worksheet.Calculate(); } this.eppWorkBook.Calculate();...