My template has some function such as TODAY(), CHOOSE(),... but when I use Jxls to write contents, these function not working, its display 0.
How to make these functions works?
To have an Excel function evaluated you can try the following
workbook.getCreationHelper().createFormulaEvaluator().evaluateAll();
or try to force formula recalculation with workbook.setForceFormulaRecalculation(true);