I have an excel file myExcel.xls which consisting of data. I have declared an Excel workbook programatically as follows:

<vb> Code:
  1. [HTML]
  2. Dim newFile As Excel.Application
  3. newFile = New Excel.Application
  4. newFile.Visible = True
  5.  
  6. newFile.Workbooks.Add()
  7. newFile.Workbooks(1).Activate()
  8. [/HTML]

Can anyone show me how to assign myExcel.xls to newFile? Thanks