Carlos Izquierdo wrote: > The error is almost always on the lines of: "bool object is not > callable".
Feel free to knock this suggestion on the head straightaway, but an error of this type will often come down to the fact that -- somewhere in the code -- you've bound a name which is originally a callable (function, method, etc) to something which is not callable. eg, <code> def found (text, s): return s in text # # .. some time later # d = {} key = 1 found = key in d # # ... later still # if found ("mary had a little lamb", "lamb"): print "Found it!" </code> Obviously this has nothing to do with Excel (and may have nothing to do with your problem :) but it certainly exhibits the same symptoms. TJG _______________________________________________ Python-win32 mailing list Python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32