Hi All,
Thanks for taking a look at this to see if you can help. I have the following macro in use and it works great. Only problem is after this macro creates my new sheet I have another formula in place that will not work because, when the new sheet is created the text box names change. Anyway to stop this??? The current macro is:
Private Sub CommandButton1_Click()
Worksheets("Towers Calc").Copy After:=Sheets(Sheets.Count)
shtname = InputBox("Enter Tower Equipment Number")
If shtname = ("") Then ActiveSheet.Name = "Tower"
If shtname = ("") Then Exit Sub
ActiveSheet.Name = shtname
End Sub
Thanks again!
Thanks for taking a look at this to see if you can help. I have the following macro in use and it works great. Only problem is after this macro creates my new sheet I have another formula in place that will not work because, when the new sheet is created the text box names change. Anyway to stop this??? The current macro is:
Private Sub CommandButton1_Click()
Worksheets("Towers Calc").Copy After:=Sheets(Sheets.Count)
shtname = InputBox("Enter Tower Equipment Number")
If shtname = ("") Then ActiveSheet.Name = "Tower"
If shtname = ("") Then Exit Sub
ActiveSheet.Name = shtname
End Sub
Thanks again!