Why are values being truncated while reading an Excel 2007 (.xlsx) file in Perl?
Posted
by K.Rao
on Stack Overflow
See other posts from Stack Overflow
or by K.Rao
Published on 2010-06-18T10:57:45Z
Indexed on
2010/06/18
12:33 UTC
Read the original article
Hit count: 176
I am reading an .xls
file using Spreadsheet::ParseExcel and was able to get data as is.
But,when reading an .xlsx
file using Spreadsheet::XLSX, the read values are truncated.
E.g., 2.4578
in .xls
and .xlsx
file is read as 2.4578
and 2.45
, respectively.
Please suggest why .xlsx
file data is corrupted.
© Stack Overflow or respective owner