View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Claus Busch Claus Busch is offline
external usenet poster
 
Posts: 3,872
Default switch to another worksheet, then return to original sheet

Hi Tonso,

Am Thu, 6 Sep 2012 11:13:25 -0700 (PDT) schrieb Tonso:

I have recorded a macro that daily copies a row of data on the current worksheet, then goes to a sheet named "data" and appends this data to a list. I want to have the macro return to the current sheet. However, I add a sheet every day and so the name of the current sheet is different every day. How can i accomplish this?


first get the name of the current (active) sheet. Then run your code and
return to the current sheet:

shName = ActiveSheet.Name
'your code
Application.Goto Sheets(shName).Range("A1")


Regards
Claus Busch
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2