Hi, I currently have an excel table (1 table each time) that has differing number of rows and differing number of columns each time, for another program i use (SPSS) to import the data i need to know the cell range of this data table. I.e what the last row of data is and the last column that has data in it.
Does anyone have any code that does something similar? My guess is i have to do something like thefollowing to enable python to read xl? import win32com.client working_dir = '//c:/temp/' xl = win32com.client.Dispatch("Excel.Application") xl.Visible = 1 #open MS Excel xl.Workbooks.Open('%s/working_output.xls' % (working_dir)) then code to find the cell ranges Any help here is much appreciated Mike -- http://mail.python.org/mailman/listinfo/python-list