I am unable to properly read numeric cells which has ROUNDUP
in the formula, for example
Cell C25 is =ROUNDUP(5296.43899096,2)
it shows 5296.44
in Excel but the below code
Cell cell = worksheet.getCell("C25");
System.out.println( cell.getNumber() );
gives output as 5296.4400000000005
, please help