HI,
We are facing a formula issue in Java Aspose Cells 8.6.2. Result produced by the Excel sheet and Aspose is different.
Actual Result produced by Excel sheet for Cell BV93 is 1.486, but the Aspose produces the error DIV/0 which is causing issue in our application.
Please find the attached sample excel sheet.
Sheet Name = Class Data
Cell Name = BV93
Please do the needful.
import com.aspose.cells.Workbook;
public class CellCheck {
public static void main(String[] args) throws Exception {
Workbook inputWorkbook = new Workbook("sample-aspose1.xlsx");
System.out.println(inputWorkbook.getWorksheets().get("Class Data").getCells().get("BV93").getValue());
}
}