Welcome,

I'm exporting results of my script into Excel spreadsheet. Everything works fine, I put big sets of data into SpreadSheet, but sometimes an error occurs:

             File "C:\Python26\lib\site-packages\win32com\client\dynamic.py", line 550, in __setattr__
                self._oleobj_.Invoke(entry.dispid, 0, invoke_type, 0, value)
            pywintypes.com_error: (-2147352567, 'Exception.', (0, None, None, None, 0, -2146777998), None)***

I suppose It's not a problem of input data format. I put several different types of data strings, ints, floats, lists and it works fine. When I run the sript for the second time it works fine - no error. What's going on?

PS. This is code that generates error, what's strange is that the error doesn't occur always. Say 30% of runs results in an error. :

import win32com.client
def Generate_Excel_Report():    
    Excel=win32com.client.Dispatch("Excel.Application")
    Excel.Workbooks.Add(1)    
    Cells=Excel.ActiveWorkBook.ActiveSheet.Cells
    for i in range(100):
        Row=int(35+i)
        for j in range(10):                      
            Cells(int(Row),int(5+j)).Value="string"
    for i in range(100):
        Row=int(135+i)
        for j in range(10):

            Cells(int(Row),int(5+j)).Value=32.32 #float

Generate_Excel_Report()

The strangest for me is that when I run the script with the same code, the same input many times, then sometimes an error occurs, sometimes not.

Thanks in advance for any help

link|improve this question

0% accept rate
If possible, a piece of code that people can run and recreate the error would be very helpful. If not, at least post the offending piece of your code which causes this error to occur, and an actual input example (with values and without comments mixed inside). – taleinat Jun 5 '10 at 7:52
It does not address your question, but I've had good luck with the xlrd and xlwt modules: python-excel.org. – FMc Jun 5 '10 at 10:14
taleinat - I've edited question - I've added piece of code – Rafal Jun 6 '10 at 12:29
Nothing to do with your problem, but why do you do int(foo) where foo is already an int??? – John Machin Jun 6 '10 at 12:54
John Machin: I was just trying find out where the error can be, but it was not there. Int(Int)=Int so it doesn't change anything actually. – Rafal Jun 6 '10 at 13:02
show 2 more comments
feedback

1 Answer

edit: It doesn't change a thing. Error occurs, but leff often. Once in 10 simulations while with .xlsx file once in 3 simulations. Please help

The problem was with the file I was opening. It was .xlsx , while I've saved it as .xls the problem disappeared. So beware my little boys, do not ever use COM interface with .xlsx or You'll get in trouble !

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.