Aleksei
Aleksei
Hi Kevin, I was looking through the code when I noticed the piece which looks like an ordinary copy-paste mistake. I could not find any test case covering it though,...
Relates to #893 1. I created an `XLFormulaDefinition` class that contains chunks of formula and a collection of `IXLReference`-s. Those `IXLReference`-s can be easily formatted in A1 or R1C1 style,...
Fixes #1243
A POC for improving performance of multiple subsequent style modifications (#1440).
Inspired by #824, #585 ## Read and complete the full issue template **Do you want to request a *feature* or report a *bug*?** - [ ] Bug - [X] Feature...
**Do you want to request a *feature* or report a *bug*?** - [x] Bug - [ ] Feature **Version of ClosedXML** Current ```develop``` **What is the current behavior?** Formulas specified...
Fixes #1536 Previously, when checking if cell cached value has to be recalculated, we only analyzed precedent cells. But if a formula uses named ranges and they start to point...
Hi! I tried to connect this library to the project I work on but found the issue which makes it impossible for us to use it because it throws `InvalidOperationException`...
As @masterworgen discovered by using ClosedXML.Report, there is an edge case causing a range to be unmerged. Reproduction: ``` var wb = new XLWorkbook("Template.xlsx"); var range = wb.Worksheets.First().Range("A5:F5"); range.Delete(XLShiftDeletedCells.ShiftCellsUp); wb.SaveAs("result.xlsx");...
Hi! We faced with the issue described in #3529 when the TypeScript client ignores the `style` attribute of a parameter passed in URL. For example, we have a schema defining...