Selecting an existing worksheet

S

SQLScott

Good afternoon,

Based on the following Microsoft article, I am retrieving data from SQL
Server.

http://msdn.microsoft.com/en-us/library/bb964684.aspx

What this article does is create a a new Excel worksheet and populate that
sheet with the data (roughly on page 13 of document).

employeeWS = DirectCast(Me.Application.Sheets.Add(), Excel.Worksheet)
employeeWS.Name = "Employees"

I want to use an EXISTING worksheet, but I cannot get this to work. I have
tried several options, such as using:

Me.Application.Sheets("employee").Select

But it either bombs there or on subsequent code (depending on other options
I try).

I don't want to create a NEW worksheet so how do I use the existing
worksheet (the one that has the focus).

Thanks in advance. It is greatly appreciated.
 
S

SQLScott

No, but you gave pointed me down the right path. It is this:

employeeWS = DirectCast(Me.Application.ActiveSheet, Excel.Worksheet)
employeeWS.Name = "Employees"

Thanks for your help Mike! Greatly appreciated.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top