View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Brian Johnson Brian Johnson is offline
external usenet poster
 
Posts: 1
Default Create Excel worksheet in .Net

I am trying to create multiple (named) worksheets in excel
using .Net PIA's. I have successfully created an excel
document and set cell values, but have been unable to
manipulate which worksheet I am using and naming the
worksheet.

Here is current sample (VB.Net):
dim xl as new excel.application()
xl.workbooks.Add()
xl.cells(1,1).Value = "test"

Any help or pointing to some documentation would be
helpful!

Thanks.