I have got the following code:
HSSFSheet sheet = workbook.getSheetAt(0);
Cell resultCell=(Cell) sheet.getRow(1).getCell(0);
Problem is result cell doesn't have any method setCellValue(). Following statement gives me an error
resultCell.setCellValue("PASS");