I am currently using Apache POI for Java to set formulas in cells.
But after I run the program and open the Excel file that I created and processed, the cells with t
Cell Constants are deprecated and will be removed from version 4.0 instead of Cell Use
CellType.FORMULA
String formula= "SUM(B4:B20)"; cell.setCellType(CellType.FORMULA); cell.setCellFormula(formula);