We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getdata
Float (currency) is returned as DateTime value by getdata
see attached file
using XLSX fi = raw"C:\temp\currency.xlsx" xf = XLSX.readxlsx(fi); sheetname = XLSX.sheetnames(xf)[1] sheet = xf[sheetname] cells = XLSX.getcellrange(sheet,"A1:A1") cells[1] dump(cells[1]) cells[1].value #result should be 14806.25 a Float64 dta = XLSX.getdata(sheet,cells[1]) @show dta dump(dta) #but result is a DateTime #dta = DateTime("1940-07-14T06:00:00") ``` [currency.xlsx](https://github.com/felipenoris/XLSX.jl/files/9962438/currency.xlsx)
The text was updated successfully, but these errors were encountered:
@kafisatz thanks for this bug report! Can you upload the file here?
Sorry, something went wrong.
The file is already here
No branches or pull requests
Float (currency) is returned as DateTime value by
getdata
see attached file
The text was updated successfully, but these errors were encountered: