Closed amichal closed 6 years ago
@amichal Can you provide a sample spreadsheet?
@tgturner since it is really small change and does not have any side effect, I think we should go ahead with this one.
@tgturner @chopraanmol1 Thanks -- sorry i missed providing a sample.
We discovered a
xlsx
file in the wild recently using cell data with the format<c r="A1" s="1"><v>1e6</v></c>
to mean1000000
. I've not been able to determine what generated this xml or if it is valid according to the spec but this PR adds support for this format to the existing code which handles scientific notation.The oldest version of Excel i have handy (Excel for Mac 2011, v 14.7.3) would have generated
<c r="A1" s="1"><v>1E+06</v></c>
in this case.A new unit test is added as well.