cell A1 has the formula "=A2" and is formatted to show 1 decimal point
cell A2 has the value 4.23
cell A1 shows 4.2 (formatted display value)
cell A2 shows 4.23 (formatted display value)
My XSSF eventmodel sheetContentHandler class implements
public void cell(String cellReference, String formattedValue, XSSFComment comment)
but formattedValue returns 4.2 for cell A1, and i want to retrieve the unformattedValue 4.23
How can i do this ? (I can't change to usermodel, i have huge files)