View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jenni_Sweden Jenni_Sweden is offline
external usenet poster
 
Posts: 10
Default Naming worksheets in loop

Hi! I am writing a macro for excel that generates new worksheets. I want to
name the worksheets so that all worksheets has one part of their name that is
the same for all worksheets and I want to have one variable part. My erronous
code now is:

Set NewSheet = Worksheets.Add
NewSheet.Name = "My worksheet" + x

I want to have a counter for x but I do not know how to comine the String
part ("My worksheet") with the value of the variabel so that the final name
is e.g. My worksheet 14. Help please!
--
I am very thankful for any fast assistance!