EPPlus icon indicating copy to clipboard operation
EPPlus copied to clipboard

EPPlus-Excel spreadsheets for .NET

Results 237 EPPlus issues
Sort by recently updated
recently updated
newest added

* Optimize tokenizer. * Reuse tokens for shared formulas. * Reuse expressions for shared formulas. * Add colon as operator. * Add intersect operator (Space) * Share atomic expressions in...

enhancement

If I set a table column's `CalculatedColumnFormula` to be the empty string or null, the styles for all cells in that column are removed. I think this might be a...

bug

I am testing the library and cant generate a valid output. This library in version 7 works on UWP? Tested: ExcelPackage.LicenseContext = LicenseContext.NonCommercial; using (var package = new ExcelPackage(rutaArchivo)) {...

The follwoing logic should be implemented internally: ```csharp var activeSheet = package.Workbook.Worksheets[package.Workbook.View.ActiveTab]; package.Workbook.Worksheets.MoveToStart("test"); package.Workbook.View.ActiveTab = package.Workbook.Worksheets.ToList().IndexOf(activeSheet); ```

enhancement

I recently upgraded from EPPlus 6.1.1 to the latest version and noticed an issue. I am setting the entire worksheet to default to Arial 12pt, but certain cells do not...

bug

Reconsider our handling of "Alternate Content Roundtripping" in accordance with ooxml standard As in dataValidations s463 file. This occurs in excel when entering decimals with commas in a list validation...

enhancement

Hi there, **OfficeOpenXml.ConditionalFormatting.Contracts.IExcelConditionalFormattingRule format1 = sheet2.ConditionalFormatting.ElementAt(0); var test = format1.Node.ParentNode;** I've recently upgraded from EpPlus version 5.0 to 7.0 and noticed that the IExcelConditionalFormattingRule.Node property has been removed from the...

From EPPlus 7 adding rows to a table from a template using structured references in a table formula (for instance =@[ColumnName1]=@[ColumnName2]) results in a corrupted Excel file. On opening Excel...

bug