Andrey Bykiev
Andrey Bykiev
Yes, thanks
It seems this issue caused by pages, that doesn't have autofilters
Workaround: ``` if (sheet.AutoFilter != null && sheet.AutoFilter.IsEnabled) sheet.AutoFilter.Reapply(); ```
@gumbarros, @emayevski, what do you think?
> @Bykiev To me, the change looks appealing for non-performance reasons: it gives a bit more control over the possible error (unfortunately, the errors produced now are very confusing for...
Is any update on this?
Sounds good, we should also fix ANTLR parser to be more consistent
@sebastienros, can you please take a look? This looks like a bug in Parlot as `double.Parse` correctly parses `123.`
Thank you, then it's a POI bug ;)
I did some research and extracted the excel file, the main difference is here in `sheet1.xml`: After closed xml: ` ` After Excel reload: `autoFilter ref="A2:C5"> ` it seems ClosedXML...