I'm having difficulties in reading a particular cell value from Excel in xlrd. Whatever value I'm reading (date value) is getting converted to a number. I know there are solutions to convert it into a python date format, but can I read directly the string value in xlrd?
feedback
|
|
xlrd does NOT convert dates to float. Excel stores dates as floats. Quoting from the xlrd documentation (scroll down a page):
See also the section on the Cell class, and the various Sheet methods which extract the type of a cell (text, number, date, boolean, etc). Also read the tutorial that you can access from www.python-excel.org | |||
|
feedback
|
|
Excel stores dates as numbers both internally and in .xls files and then formats them accordingly when displaying. Thus, if you read them naively with xlrd, you will get either numbers or strings. What you should do is check what the type of a cell is and then convert the number yourself. Either using xlrd's built-in functions, such as Refer to this question for some more details. | |||
|
feedback
|
|
well, as you say:
FOR THIS EXAMPLE THE XLS is: sheet 1:listing
sheet 2:colors
| ||||
feedback
|