Mats Alm
Mats Alm
Thanks for reporting, we will have a look at this.
This error occured due to invalid handling of error values in the IF function. It is now fixed in our develop branch/nuget feed and will be included in the next...
Thanks for reporting. What EPPlus version are you using? I'll have a look at this and will use EPPlus 6.0.3 for the tests.
This problem because some cells in the workbook contains formulas like this (example from 'HM-RAID NVME Recycle Calc' worksheet, cell H4.): `SUM('Base Data'!F348:'Base Data'!F362)` EPPlus cannot handle this type of...
It is most likely that the cells that has calculated successfully never hits the SUM('Base Data'!F348:'Base Data'!F362) formula. That formula is 5-6 dependencies away from these cells and you have...
Hi, Thanks for reporting this. I'll have a closer look at it tomorrow. If you want to submit a PR, see our [Contributing guidelines](https://github.com/EPPlusSoftware/EPPlus/blob/develop/CONTRIBUTING.md). If your contribution is less than...
I had a look at this, it seems to work as long as you don't have a EpplusTableColumn attribute on the WorkerDTO, but when you add this the HeaderPrefix is...
Hello, As AutofitColumns() loops through all cells in the range and measures the length of the text in each cell this will include millions of measurements depending on how many...
Hello @ahmedtolba1984 You should only call autofitcolumns once for the entire range. Like sheet.Cells["A1:D1000"].AutofitColumns() (or with numeric indexers).