I want to copy an array (size 2*8192) to an Excel range.
This works fine :

  xlApp = Dispatch("Excel.Application")
  xlApp.Workbooks.Add()
  xSheet = xlApp.ActiveWorkbook.ActiveSheet
  xSheet.Range(xSheet.Cells(row,col), \
    xSheet.Cells(row+aLen-1,col+1)).Value = array

but is extremely slow. Is there any way to speed it up ?

Paul Casteels
U.I.A. / Physics

_______________________________________________
ActivePython mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
Other options: http://listserv.ActiveState.com/mailman/listinfo/ActivePython

Reply via email to