Created Unassigned: A bug when copying a worksheet (ExcelWorksheet) from one...
I try to copy a worksheet from one Excel document to another one and encountered a problem.I found an error in the method 'Worksheets.Add'Here is the code:```private static byte[] CombineXlses(params...
View ArticleCreated Unassigned: ConditionalFormatting causing HIGH overhead [15633]
I have a process that builds a rather large spreadsheet. About 30,000 rows, roughly 1000 columns. (don't know me, I'm the developer, I tried to convince the user it was ludicrous, but what do I...
View ArticleEdited Unassigned: ConditionalFormatting causing HIGH overhead [15633]
I have a process that builds a rather large spreadsheet. About 30,000 rows, roughly 300 columns. (don't knock me, I'm the developer, I tried to convince the user it was ludicrous, but what do I...
View ArticleCreated Unassigned: Issue(s) with PrinterSettings.RepeatColumns [15634]
Issuing a PrinterSettings.RepeatColumns on an excel file that has either been written to disk (editing an existing xlsx or issuing a package.save and then issuing a RepeatColumns) causes an error. The...
View ArticleEdited Unassigned: Issue(s) with PrinterSettings.RepeatColumns [15634]
Issuing a PrinterSettings.RepeatColumns on an excel file that has either been written to disk (editing an existing xlsx or issuing a package.save and then issuing a RepeatColumns) causes an error. The...
View ArticleCreated Unassigned: Enumerator skips first column if it's empty [15635]
If you have an ExcelRange for a header row, and the first column happens to be empty, the enumerator will skip the first column and cause "index out of range" exception when you loop through the actual...
View ArticleCreated Unassigned: about EPPlus dll [15636]
Hi I am using EPPlus lib to read excel stream in my project but my CEO asking about compatibility of EPPlus and support if we will facing any issue in feature for excel file version changeso please...
View ArticleCommented Unassigned: Formula which includes cell ref like "A:B" cannot copy...
```// withcell1.Formula == "VLOOKUP(C1, A:B, 2)"// docell1.Copy(cell2)// thencell2.Formula == "VLOOKUP(C2, #REF!, 2)"```It is probrem of `ExcelCellBase::UpdateFormulaReferences()` or `ExcelAddressBase`...
View ArticleCreated Unassigned: Error "row cannot be less than 1" while using 'InsertRow'...
Our project is upgraded from 4.0.5 to 4.1.0 and noticed this errorThe following code results in exception "row cannot be less than 1"int xlRow = 18;using (ExcelPackage xl = new ExcelPackage(pfReport,...
View ArticleCommented Unassigned: Changing any row height after inserting picture makes...
After inserting picture I change some other row's height. The result is that picture is square. If I comment out row's height change, picture is rectangular as expected.Image position and size does not...
View ArticleCommented Unassigned: Changing any row height after inserting picture makes...
After inserting picture I change some other row's height. The result is that picture is square. If I comment out row's height change, picture is rectangular as expected.Image position and size does not...
View ArticleCreated Unassigned: Replace functionality in Excel sheet [15638]
Hello,I would like to know how to replace text in Excel sheet. I have few tags like @@Customer which I need to replace with actual customer name.Please let me know.Thanks,
View ArticleCreated Unassigned: Excel Workbook Image [15639]
I am trying to add an image to the worksheet but i am getting a error at the following linepicture = ws.Drawings.AddPicture("profile" + rowIndex.ToString() + columnIndex.ToString(), image );below is...
View ArticleCreated Unassigned: Avoid modify the excel file when save with out change....
I build a tool to refresh my excel file, and the excel files is under the version control.Each time I save the excel file using EPPlus, the file modified without any change(If the meta data of this...
View ArticleCreated Unassigned: Copying array formulas creates normal formulas [15641]
```ExcelPackage ep = new ExcelPackage();ExcelWorksheet sheet = ep.Workbook.Worksheets.Add("A Sheet");sheet.Cells[1, 1].CreateArrayFormula("IF(SUM(B1:J1)>0,SUM(B2:J2))"); //A1sheet.Cells[2, 1].Value...
View ArticleCreated Unassigned: Pivot Table : System.Xml.XmlException: An error occurred...
Hello, I encountered issue related with pivot, Please help me.Thanks in advance any help``` var fileInfo = new FileInfo(path); using (var package = new ExcelPackage(fileInfo)){ var pivotSheet =...
View ArticleEdited Unassigned: Pivot Table : System.Xml.XmlException: An error occurred...
Hello, I encountered issue related with pivot, Please help me.Thanks in advance any help``` var fileInfo = new FileInfo(path); using (var package = new ExcelPackage(fileInfo)){ var pivotSheet =...
View ArticleEdited Unassigned: Pivot Table : System.Xml.XmlException: An error occurred...
Hello, I encountered issue related with pivot, Please help me.Thanks in advance any help``` var fileInfo = new FileInfo(path); using (var package = new ExcelPackage(fileInfo)){ var pivotSheet =...
View ArticleCreated Unassigned: Insert Slicer with EPPlus [15643]
Hello, I would like to know how can I insert slicer(to filter data) with EPPlus library.Actually I created a pivot table with this library and I want to create slicer for it as we can do it in Excell...
View ArticleCreated Unassigned: Error throws while loading excel workbook using epplus if...
We are tying to read excel using EPPLUS. In this scenario, if the excel in a format like image in a first row and second row as empty and from third row main content it throws error wile loading...
View Article