Jexcel Formula Calculation Error

后端 未结 2 503
离开以前
离开以前 2021-01-14 05:33

I have created a worksheet, out.xls which had cell D6=D5*2 and D5 set to 1. My issue is that when I plug a value into D5 in jxl, D6 never calculates. D6 simply hold

相关标签:
2条回答
  • 2021-01-14 06:01

    If anyone else wants to know, POI does that using the FormulaEvaluator class.

    Att

    0 讨论(0)
  • 2021-01-14 06:11

    JExcel only allows to read or write Excel files, and give a Java representation of the content of an Excel file. It will not substitute for Excel.

    When you add a formula, this formula will be computed, but only in Excel, when you open the generated file in Excel. The cell is not computed by JExcel.

    0 讨论(0)
提交回复
热议问题