I want to load a large Excel workbook, modify a few fields and then save the result. Unfortunately, ClosedXML errors on save on functions it doesn't support, eg:
NameNotRecognizedException: The identifier `_xlfn.IFNA` was not recognised.
Looking through issues and docs, I'm aware that certain functions can't be evaluated by ClosedXML, but I haven't found a way to suppress function evaluation on save (I've tried messing with Save options and no dice), and would like to know if that's not possible because of how xlsx or ClosedXML works, or if I'm just not reading carefully enough.
Or if skipping formula evaluation is not possible, not even if I fork ClosedXML, I'm looking for a well-supported alternative, free or paid. I'd rather not use Excel Interop though.
Any kind soul able to enlighten me here?
(PS: I'm also aware that I can rewrite formulae like IFNA and IFS in order to get near-equivalent behavior, but I'd like to preserve the end-user quality of life implicit in things like IFS.)