Hi,
Am using 8.2.2 latest version and am unable to find a string in excel using cells.find(). It is returning null value though the string is present in the excel.below is my code snippet
FindOptions fop = new FindOptions();
fop.setLookAtType(LookAtType.CONTAINS);
Cells cells=workbook.getWorksheets().get(0).getCells();
if(cells !=null){
System.out.println("found at "+cells.find("Updated By", null,fop));
}
else{
System.out.println("cell is null");
}
and am getting the result as
found at null
but the string "Updated By" is present in my excel sheet.