Closed NikitaRazmakhnin closed 2 years ago
Thanks @NikitaRazmakhnin Would you mind adding a test covering this case?
Thanks @NikitaRazmakhnin Would you mind adding a test covering this case?
Sure, will do! :)
@qrilka tests are done. I verified they fail with wrong value-type before fix and are green after the fix.
@NikitaRazmakhnin please take a look into the failure with microlens
Thanks @NikitaRazmakhnin for the contribution!
According to [ECMA-376] specification of XML schema of Excel default type for cell is
n
- number. This is how it is implemented in regular parser, but streamed option was a bit incorrect here.Spec declares such schema:
<xsd:attribute name="t" type="ST_CellType" use="optional" default="n"/>
According to specification if cell has no
t
attribute, it has a default value asn
- number. ButUntyped
caused wrapping of numeric values into text instead. As far as I understand it should beCellDouble
in all cases wheret
is omitted.