Edited Unassigned: Missing AlternativeText property by Excel comment [15229]
Hi,Excel comment has a property of Alternative Text, which is not implemented in EPPlus. To implement it, it is enough to add the following property to ExcelVmlDrawingBase class:``` public string...
View ArticleCommented Unassigned: Missing AlternativeText property by Excel comment [15229]
Hi,Excel comment has a property of Alternative Text, which is not implemented in EPPlus. To implement it, it is enough to add the following property to ExcelVmlDrawingBase class:``` public string...
View ArticleCreated Unassigned: copied sheet as a reference to the original sheet for the...
if you copy a sheet and delete the original one, all drawing on the copied sheet will be lost and Excel will ask to repair the sheet. (unreadable content)step to reproduce1. create a new excel file...
View ArticleCommented Unassigned: copied sheet as a reference to the original sheet for...
if you copy a sheet and delete the original one, all drawing on the copied sheet will be lost and Excel will ask to repair the sheet. (unreadable content)step to reproduce1. create a new excel file...
View ArticleCreated Unassigned: compression choice is ignored [15251]
step to reproducecreate a new excel file and run this, compare file size```Using exFile As New ExcelPackage(New FileInfo("c:\book1.xlsx")) For row = 1 To 1000 For col = 1 To 100...
View ArticleCreated Unassigned: double saveas create an exception [15252]
if you do a double saveas, an exception will be thrown with "Part already exist"step to reproduce```Using exFile As New ExcelPackage(New FileInfo("c:\book1.xlsx")) For row = 1 To 1000 For col = 1 To...
View ArticleEdited Unassigned: compression choice is ignored [15251]
step to reproducecreate a new excel file and run this```Using exFile As New ExcelPackage(New FileInfo("c:\book1.xlsx")) For row = 1 To 1000 For col = 1 To 100...
View ArticleCreated Unassigned: The OFFSET function is not calculating the toRow and...
The OFFSET function is not calculating the toRow and toCol correctly.Current code:```var toRow = (height != 0 ? height : adr._toRow) + rowOffset;var toCol = (width != 0 ? width : adr._toCol) +...
View ArticleCommented Issue: System.InvalidOperationException saving document with cloned...
EPPlus is working fantastically for my project, except that I get an exception when saving a document that contains a cloned sheet with images.If I leave the 'template' sheet in the document then it...
View ArticleEdited Issue: The OFFSET function is not calculating the toRow and toCol...
The OFFSET function is not calculating the toRow and toCol correctly.Current code:```var toRow = (height != 0 ? height : adr._toRow) + rowOffset;var toCol = (width != 0 ? width : adr._toCol) +...
View ArticleCommented Issue: Cannot add more than 1 pivot table to xlsx file [14695]
I have attached a mvc3 c# project that creates two tabs of data(6 rows, 6 columns) and then tries to create two pivot table, each on their own tab. If I only create one pivot table(does not matter...
View ArticleCommented Unassigned: Excel crash with pivot table [15240]
Hi,when creating a pivot table for a data range where one of the field names contains a line break (\r\n) , Excel crashes on opening the resulting .xlsx file.This can also be reproduced with one of the...
View ArticleCreated Unassigned: ExcelBorderXml | diagonalUp and diagonalDown fields are...
The internal fields ___diagonalUp__ and ___diagonalDown__ fields of the class __ExcelBorderXml__ are not parsed from Xml, when opening an excel file. This leads to the effect, that programmatical cells...
View ArticleCreated Unassigned: Failed address resolution by "[]" [15255]
When creating a named area in MS Excel application sometimes it puts empty square brakets at the beginning of the address string. I did not find out depending on what circumstances Excel does so. So I...
View ArticleCreated Unassigned: System.NullReferenceException in ExcelRangeBase...
Hi,I got the following exception when trying to read a XLSX file:```System.NullReferenceException: Object reference not set to an instance of an objectat OfficeOpenXml.ExcelRangeBase..ctor...
View ArticleCreated Unassigned: Error when opening protected worksheet [15257]
The error is -__Can not open the package. Package is an OLE compound document. If this is an encrypted package, please supply the password__Here is the process:1. My application opens a blank version...
View ArticleCreated Unassigned: CellStore bug / InsertRow [15258]
Hi,I've seemed to found a problem in the Insert method of the CellStore that affects the InsertRow operation. First, steps to reproduce it (I had the issue with functions, but I suppose it affects all...
View ArticleCreated Unassigned: Write to shared workbook [15259]
How can I write to a shared workbook that is opened? I need to be able to write to an Excel doc that is opened by someone else, so that they can see updates in real time. However, if I save to a shared...
View ArticleCreated Unassigned: Support error bars for bar chart [15260]
It would be great if you could support error bars on a bar chart series.
View ArticleCreated Unassigned: File corrupt [15261]
I have a weird bug where the Excel file is corrupt. I use EPPlus to open a template which is an xlsx file where I add data coming from a database and serve that modified file to the client. When I...
View Article