Need to finish my project for college, decided to do it in JAVA with APACHE for excel, just to learn something more, anyway.
I've created formula:
sheet.getRow(i).createCell(4, CellType.FORMULA).setCellFormula("IF(B:B=1800, TRUE, IF( B:B< 1800, FALSE))");
The question is: Is there any possibility to change TRUE and FALSE for any other words ?
Thanks.