View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Gary[_22_] Gary[_22_] is offline
external usenet poster
 
Posts: 10
Default New worksheet button code

Hi,

I need to be able to create a button, that when pressed will copy the
current worksheet into a new worksheet. The first worksheet is to be
called 'Report1', the next worksheet needs to be called 'Report2' and
so on. I have adpated some code I have access to and so far have the
following:

Sub Button135_Click()
Dim strSheetName As String

strSheetName = InputBox("Enter sheet name")
Sheets("Report1").Copy After:=Sheets(Sheets.Count)
Sheets(Sheets.Count).Name = strSheetName

End Sub

I want to get rid of the Input box asking for the name of the
worksheet and automate this so that it goes Report1, Report2,
Report3........

Is this possible?

Also, on the newly created sheets some of the fields need to be a
running total from the sheet previous. Hoew can I get these to update?

Thanks.