switch to another worksheet, then return to original sheet

  • Thread starter Thread starter Tonso
  • Start date Start date
T

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. Iwant to have the macro return to the current sheet. However, I add a sheetevery day and so the name of the current sheet is different every day. Howcan i accomplish this?

Thanks,

Tonso
 
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
 
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? Thanks, Tonso

Claus,
Thank you so very much!

Tonso
 
Back
Top