Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
What I would like to do: Set a cell value. Check with a program if cell values conform to data validation rules. I could extract all the information needed to create a validation function, b...
#1: Initial revision
How to programmatically evaluate Excel data validations using .NET?
What I would like to do: 1. Set a cell value. 2. Check with a program if cell values conform to data validation rules. I could extract all the information needed to create a validation function, but I don't want to re-invent the wheel. What I have in mind is along the lines of how [NPOI](https://github.com/nissl-lab/npoi) allows recalculating all formulas to reflect changes in a workbook: ```fsharp let recalculateFormulas (workbook: XSSFWorkbook) = let creationHelper = workbook.GetCreationHelper() let formulaEvaluator = creationHelper.CreateFormulaEvaluator() formulaEvaluator.EvaluateAll() ```