Mats Alm

Results 105 comments of Mats Alm
trafficstars

Filters are not included in the [copy function](Copy-Ranges-or-Entire-Worksheets). I'll add this as an enhancement. They are however included if you copy an entire worksheet via` Workbook.Worksheets.Add(string name, ExcelWorksheet copy) `function.

Hi, Thanks for this PR. We will keep it as an enhancement request. Our concern with the suggested solution is that it would have a negative performance impact on the...

@ashahabov, @ihorbach I am closing this PR, partly due to the concerns in my comment above. We will however have a deeper look at this as we believe it is...

No, unfortunately not.. you'll have to read from the sheet cell by cell. But a good idea to support this, I'll add the enhancement label to this issue and we´ll...

Hello, thanks for reporting this. While your formula/values indeed returns 2, this... `SUM(A1:A3="Yes")` ...and this... ``` A1 formula = TRUE() A2 formula = TRUE() A3 formula = FALSE() SUM(A1, A2,...

Hi @nmg196, an xlsx file is just a zipped library of xml-files - to view the internal files of any *.xlsx file you can just rename the file from *.xlsx...

@nmg196 - May I ask how your xlsx-files were created? By Excel or another tool? If Excel, do you know which version of it?

I did some testing and we can add support for this in EPPlus by checking the [BOM](https://simple.wikipedia.org/wiki/Byte_order_mark) of the files and then process the internal files according to the format....

@TheQuake - thanks for reporting. EPPlus does not throw an Exception with this message from what I can see. It seems to come from the `System.ComponentModel.DataAnnotations.Display` attribute. Can you provide...

Hi @colbybhearn, we have fixed this one and #1365 and it will be released in next version of EPPlus 6. Both of these worked as expected in EPPlus 7, which...