if(CellType.FORMULA == row.getCell(j).getCellTypeEnum()) {
try {
cellValue = String.valueOf(row.getCell(j).getStringCellValue());
} catch (IllegalStateException e) {
cellValue = String.valueOf(row.getCell(j).getNumericCellValue());
}
}