I am doing a project where I need to take data from 1000+ spreadsheets, reformat and then recombine into one spreadsheet. I am using xlrd and xlwt to do this and have been successful taking data from 1 spreadsheet and reformatting and returning to excel. To save time I would like my program to do all 1000 at once rather then me having to type in each file name.

import xlrd
import xlwt

def ReadandWrite(rownum, swb, fwb, Fsheet):
    sheet = swb.sheet_by_index(0)
    RList = [str(v).strip() for v in sheet.col_values(colx=2,  
                                                      start_rowx=1, end_rowx=13)]
    emptyCell = sheet.cell(1,3).value
    rowEmpty = False
    r = 15
    while not rowEmpty:
        rowEmpty = all(val == emptyCell for val in sheet.row_values(r, end_colx=8))
        r += 1

    rs = rownum
    for rows in range(15, r-1):
        Flist = []
        cs = 0
        IList = [str(x).strip() for x in sheet.row_values(rows,end_colx=8)]
        FList = RList + IList
        for value in FList:
          Fsheet.write(rs,cs,value)
          cs += 1
        rs += 1

    return rs

def main():
    fwb = xlwt.Workbook()
    Fsheet = fwb.add_sheet('Final Formatted Data')
    rownum = 0
    for name in range(1,3):
        fname = str(name)
        fname = fname + ".xls"
        swb = xlrd.open_workbook(fname)
        rownum = ReadandWrite(rownum, Swb, fwb, Fsheet)

    fwb.save('test.xls')

main()

This is my code so far, I am running into an error at line 14 "rowEmpty = all(val == emptyCell for val in sheet.row_values(r,end_colx=8))", the error is "list index out of range" and was wondering if anyone could help me.

link|improve this question
See answer to identical question on the python-excel google group: groups.google.com/d/topic/python-excel/DFZECZCYwEg/discussion – John Machin Jul 14 '11 at 22:14
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.