I am using poi 3.6
I am able to create the excel properly. But when I trying to set the cell type as number , it always give me cell type as general.
i.e. In the newly create excel , when I right click and go to format cell ->there I always found number to be a General.
My code is like this
style.setAlignment(CellStyle.ALIGN_RIGHT);
dataCell.setCellValue(Float.parseFloat(value as String);
dataCell.setCellType(Cell.CELL_TYPE_NUMERIC);
dataCell.setCellStyle(style);
Can you please suggest what is missing here ?