I have some values in my *.xls file but when I try to import them with wb_sheet.col_values(...) I only get empty values. I tried wb_sheet.col(...) and it also claims that those cells are empty. However, they are not, I can see the values in Excel.
My *.xls file was generated by a Labview script and I am pretty sure it contains some makros and stuff. However, xlrd does not return an error.
I would upload a sample sheet but it contains confidential information.
Versions: python 2.7.3, Windows 7, Excel 2010, xlrd 0.8.0.
Small script:
wb = open_workbook('*.xls')
wbs = wb.sheet_by_index(0)
wbs.col(0)
The result I get is empty:'', for all of the cells, even though the first column contains values, when I open with excel.