I use EPPlus to create spreadsheets (reports). In my application, each new document first opens an older report to get previous results. The problem is getting data from cells containing formulas - unfortunately, EPPlus does not have a computational mechanism . For it to work, I need to open the old report in Excel, save the changes (formulas are calculated), and then the new report is created correctly. If I do not, the values ββfrom the cells of the formula are empty.
- Is there a way to simulate (not do it manually, but with code) opening, calculating, closing an Excel table without excel installed?
- Any ideas how to deal with it?
source share