Create a new worksheet with a macro and giving it a specific name

S

Steve Krieger

I'm trying to create a new worksheet with a macro where the worksheet has a
specific name. However, when the macro creates the worksheet, it creates one
with the name "SheetXX". I can continue the macro to rename "SheetXX" to the
specific name I want, but captured in the macro is referenece to "SheetXX".
When I run the macro again, it creates a new worksheet with the name
"SheetXX+1" and then bombs out because it can't find "SheetXX" to rename it
to the specific name that I want.
Anyway to to have the macro create the new worksheet with the specific name
without having to have the Excel generated "SheetXX" name and then having to
rename it to the specific name?
Thanks for your help.
Steve Krieger
 
J

Jim Thomlinson

The short answer is no. When a new sheet is created XL gives it a name as you
have specified. You can then just rename it and then reference it by that
name.

Worksheets.Add
ActiveSheet.Name = "Tada"
Worksheets("Tada").range("A1").Value = "Hello World"
 
J

Jim Thomlinson

The short answer is no. When a new sheet is created XL gives it a name as you
have specified. You can then just rename it and then reference it by that
name.

Worksheets.Add
ActiveSheet.Name = "Tada"
Worksheets("Tada").range("A1").Value = "Hello World"
 
S

Steve Krieger

Thanks so much! With a little bit of editing I was able to get it to do what
I wanted.
Steve
 
S

Steve Krieger

Thanks so much! With a little bit of editing I was able to get it to do what
I wanted.
Steve
 

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