View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Thomlinson Jim Thomlinson is offline
external usenet poster
 
Posts: 5,939
Default worksheet name store in a variable

Dim wks as Worksheet

set wks = activesheet
'Your Code Here...
wks.Select

--
HTH...

Jim Thomlinson


"Steve P" wrote:

I'm sorry... I need the name of the active WORKSHEET to be stored in a
variable... not the name of the macro. Its late and I've been coding all
day...lol.

"Steve P" wrote:

Hi guys,
I'm finishing up a macro and need to store the name of the macro in a
variable.

I want the macro to find out what worksheet the user is on, execute the
program which in this case is a webquery (which runs on a specific
worksheet), and return to the worksheet that the user was originally looking
at.

I'm thinking that the best way to do this is to first set a variable to the
name of the active worksheet, execute the program, and lastly to activate the
original worksheet by using the variable that was set in the first operation.

What do you guy think?