M
Michael168
Please kindly help me to modify the macro below
Sub NewSheet()
Sheets("Master").Visible = True
Sheets("Master").Select
Sheets("Master").Copy After:=Sheets(98)
Sheets("Master").Select
Range("B3:N59").Select
Selection.Copy
Sheets("Master (2)").Select
Range("B3").Select
ActiveSheet.Paste
Application.CutCopyMode = False
ActiveWindow.LargeScroll Down:=1
Sheets("Master").Select
Sheets("Master").Visible = False
Sheets("Master (2)").Select
Range("M11").Select
End Sub
How can I change the above macro so that the new sheet will always b
at the last sheet and name after the previous last sheet plus 1 like i
the previous last sheet name is "F0098" then the newsheet name will b
"F0099" and so on when I run the macro every time.
Thanks
Michae
Sub NewSheet()
Sheets("Master").Visible = True
Sheets("Master").Select
Sheets("Master").Copy After:=Sheets(98)
Sheets("Master").Select
Range("B3:N59").Select
Selection.Copy
Sheets("Master (2)").Select
Range("B3").Select
ActiveSheet.Paste
Application.CutCopyMode = False
ActiveWindow.LargeScroll Down:=1
Sheets("Master").Select
Sheets("Master").Visible = False
Sheets("Master (2)").Select
Range("M11").Select
End Sub
How can I change the above macro so that the new sheet will always b
at the last sheet and name after the previous last sheet plus 1 like i
the previous last sheet name is "F0098" then the newsheet name will b
"F0099" and so on when I run the macro every time.
Thanks
Michae