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
The below code worked fine for me, hope this could be useful to someone.
cell.setCellType(Cell.CELL_TYPE_FORMULA); cell.setCellFormula("SUM(C70:C76)");