Closed chkal closed 6 years ago
A quick update on this one. We just discovered, that this issue only occurs is the formula used results in a STRING
. It works fine for NUMERIC
.
I could contribute a failing test if this is helpful.
Can this be closed?
Yes, sorry, this was fixed with #153.
Hi!
First of all thank you very much for this awesome library. We are currently having trouble parsing very large Excel file with POI and came across your library. It is basically working great! Impressive work! So thank you.
Unfortunately we ran into one issue. We are having troubles parsing Excel files containing formulas. Our existing code basically checks the cell type and if it finds
CellType.FORMULA
, it will usecell.getCachedFormulaResultTypeEnum()
to get the effective cell of of the cached formula result saved with the file.Well, the issue seems to be, that
cell.getCachedFormulaResultTypeEnum()
also returnsCellType.FORMULA
instead of something likeCellType.NUMERIC
. As our code is recursive, we are running into aStackOverflowError
.I hope to find some time in the next days to have a deeper look at your code myself, but any help would be highly appreciated.
PS: I tried both
1.2.1
and the latest snapshots.