Re: Pywin32 Excel question

2006-08-05 Thread John Henry
Somebody on the Pywin32 list helped. The problem is that: xlSel=xlSheet.Range("1:1,2:2,3:3").Select() is wrong. It should be: xlSel=xlSheet.Range("1:1,2:2,3:3") xlSel.Select() Then I can do the rest. And no, you don't want to do the xlSheet.Copy(). That copies the entire workbook and you en

Re: Pywin32 Excel question

2006-08-04 Thread [EMAIL PROTECTED]
John Henry wrote: > I posted the following message to the Pywin32 list but if anybody here > can help, it would be appreciated very much. > > > Hi list, > > I have a need to copy 3 rows of data from the top of my Excel > spreadsheet to another location. I would have t

Pywin32 Excel question

2006-08-04 Thread John Henry
I posted the following message to the Pywin32 list but if anybody here can help, it would be appreciated very much. Hi list, I have a need to copy 3 rows of data from the top of my Excel spreadsheet to another location. I would have throught that this should be very