I don't think this is possible but thought I'd ask. A cell's value is calculated based on a formula e.g. A2=A1*3. Change A1 value
expect output to be 18
Code:
Number number = new Number(0,0,6); //set A1 to 6
workSheet.addCell(number);
System.out.println(workSheet.getCell(0,1).getContents()));
expect output to be 18