Commented Unassigned: LoadFromDataTable with empty Table and PrintHeaders...
I'm using 3.1.3.3.```using System;using System.Data;using OfficeOpenXml;namespace Test{ class Program{ static void Main(string[] args){ var ep = new ExcelPackage(); var sheet =...
View ArticleCreated Unassigned: Redundant check in ExcelWorksheet.Save [14986]
In ExcelWorksheet.cs, line 2430 (more or less):```if (Drawings.Count != null && _drawings.Count == 0){//Remove node if no drawings exists. DeleteNode("d:drawing");}```Drawings.Count, being an...
View ArticleCreated Unassigned: Rethrowing exceptions [14987]
Sometimes, tracking down exceptions occurring in EPPlus can be more difficult than necessary, due to some *catch* blocks throwing catched exceptions again,instead of rethrowing them.The difference in...
View ArticleCreated Unassigned: Bug when saving a workbook loaded from a template [14988]
I'm not entirely sure this is a bug, but since it's about code that worked in previous versions and doesn't work now, I thought creating an issue was the appropriate course of action.This code, which...
View ArticleCreated Unassigned: I cannot set the chart title without editing the XML [14989]
I am doing the following:```var chart = (ExcelScatterChart)oepSheetData.Drawings["Chart 1"];chart.Series.Delete(0);chart.Name = "New Name"; // I know this is not the title// Add some series manually//...
View ArticleCommented Issue: pivot table not correct when add three rowfield [14580]
when i add rowfield to pivottable, if i add 3 rowfield, rowfield sequence not correct when i open excel file.example:pivotTable1.RowFields.Add(pivotTable1.Fields("REGION")) ' sequence 1...
View ArticleCreated Unassigned: Error reading Excel file but not when under debug [14990]
When I run the following code with no break points set I am getting an: "Object reference not set to an instance of an object." exception from the package.workbook being nothing as soon as I try to...
View ArticleCreated Unassigned: Page breaks is not working EPPlus 4.0 Beta 2 [14991]
Hi JanI am facing page break issue in Epplus 4.0, previously i have used EPPlus 3.1, page break was working fine in Epplus 3.1 but later i have changed the class library Epplus 4.0 beta due to Title...
View ArticleEdited Unassigned: Page breaks is not working EPPlus 4.0 Beta 2 [14991]
Hi JanI am facing page break issue in Epplus 4.0, previously i have used EPPlus 3.1, page break was working fine in Epplus 3.1 but later i have changed the class library Epplus 4.0 beta due to Title...
View ArticleCreated Unassigned: Array Formulas Messed Up On 4.0 Beta [14992]
Hello,I have a workbook with a summary worksheet with array formulas and a data worksheet for inputting data with EPPlus. This worked very well with 3.1.3 but trying it with the new 4.0 Beta my array...
View ArticleCommented Unassigned: Page breaks is not working EPPlus 4.0 Beta 2 [14991]
Hi JanI am facing page break issue in Epplus 4.0, previously i have used EPPlus 3.1, page break was working fine in Epplus 3.1 but later i have changed the class library Epplus 4.0 beta due to Title...
View ArticleCommented Unassigned: Array Formulas Messed Up On 4.0 Beta [14992]
Hello,I have a workbook with a summary worksheet with array formulas and a data worksheet for inputting data with EPPlus. This worked very well with 3.1.3 but trying it with the new 4.0 Beta my array...
View ArticleCommented Unassigned: Array Formulas Messed Up On 4.0 Beta [14992]
Hello,I have a workbook with a summary worksheet with array formulas and a data worksheet for inputting data with EPPlus. This worked very well with 3.1.3 but trying it with the new 4.0 Beta my array...
View ArticleCreated Unassigned: NullReferenceException on ExcelPackage Dispose (4.0 Beta...
Using 4.0 Beta 2, ExcelPackage Dispose() is throwing a NullReferenceException after opening a blank Excel file. Please see attached sample simple Console Application for example.Could be related to:...
View ArticleCommented Unassigned: Page breaks is not working EPPlus 4.0 Beta 2 [14991]
Hi JanI am facing page break issue in Epplus 4.0, previously i have used EPPlus 3.1, page break was working fine in Epplus 3.1 but later i have changed the class library Epplus 4.0 beta due to Title...
View ArticleCommented Unassigned: LoadFromDataTable with empty Table and PrintHeaders...
I'm using 3.1.3.3.```using System;using System.Data;using OfficeOpenXml;namespace Test{ class Program{ static void Main(string[] args){ var ep = new ExcelPackage(); var sheet =...
View ArticleCreated Unassigned: Change GetColumnLetter to a public method [14997]
It would be very useful to have GetColumnLetter() as a public method for use in adding formulas.
View ArticleEdited Issue: Arbitrary buffer size is too small; crash on save [14811]
I have a file generated with Excel 2010 (too large to attach) that, upon loading then saving with EPPlus without any changes, results in a "Index out of range" exception and the file is not...
View ArticleCommented Issue: Arbitrary buffer size is too small; crash on save [14811]
I have a file generated with Excel 2010 (too large to attach) that, upon loading then saving with EPPlus without any changes, results in a "Index out of range" exception and the file is not...
View ArticleEdited Unassigned: Seemingly arbitrary cells are unformatted on package save...
In some cases that I haven't been able to determine a well-descriptive pattern for, EPPlus 3.1.3.3 seems to unformat (or at least corrupt the formatting of) certain cells on worksheets.See the attached...
View Article