[Tutor] Traversing Excel Columns

Chris Hengge pyro9219 at gmail.com
Tue Sep 12 00:41:27 CEST 2006


Just tried that (pretty sure I already did, but hey... I could have goofed
it)

No go


On 9/11/06, Alan Gauld <alan.gauld at btinternet.com> wrote:
>
> I'm no expert in Excel programming but I assum,e you tried
> the obvious:
>
> > I'm looking for something more like
> > try:#Loop until rows are null
> >    while row in xlwksht != null
> >         #Write each row, incriment 1+row in column 5
> >         print >> file, "'" + %s + "',", %
> > (xlSht.Cells(1+row,5).Value)
>
> for row in xlSht.Cells:
>    print >> file, row.Value
>
> I know you can do something similar in VBScript, I'm not sure
> if the Python bindinghs to the COM objects are gtthat clever however.
>
> But might be worth some experimenting at the >>> prompt.
>
> Alan G.
>
>
> _______________________________________________
> Tutor maillist  -  Tutor at python.org
> http://mail.python.org/mailman/listinfo/tutor
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/tutor/attachments/20060911/c8d55391/attachment.html 


More information about the Tutor mailing list