G
Gary
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.
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.