Mats Alm
Mats Alm
Hi, just a brief disclaimer: the bugs we are fixing now is in EPPlus 5, which has moved to [another repo](https://github.com/EPPlusSoftware/EPPlus) and is distributed under another license (see the readme...
Introduced async methods for Calculate, Save, SaveAs and Load.
I understand what you mean. But still feel a bit uncertain what to do with this since there are - as far as I can see - no calls to...
Thanks. I discussed this with @JanKallman yesterday and we decided to remove the methods I added. We might look deeper this in the future. Will keep it open as a...
All numbers are doubles in the context of EPPlus formula calculation, but we use double.Epsilon to avoid floating point issues when comparing doubles internally. How the cell is formatted does...
The following test is passing when I try, maybe I have misunderstood. Can you change it so it fails according to your description? ```cs [TestMethod] public void Issue379() { using...
Ok, thanks. Just for clarity - EPPlus does not change any values in the cells or the way they are calculated due to the parameters you are mentioning, they are...
Hi Gordon! The last test you provided was useful and the problem lies in that we cast all numbers to double in EPPlus. I could easily make your test pass...
We haven’t looked much into the floating point challenge yet. We are handling it on operators, but haven’t had much issues on calculations so far. From the besinning we did...
@kjkrum That is how EPPlus is built from the beginning - i.e. all numeric values are doubles all the way down to the cell store. Excel itself stores numeric values...