I am trying to reference a worksheet that is created when the user hits a macro button. Which in this case is named from an input cell (TI Summary B4, and in this case ends up being "7525"). I would like to reference this sheet as a variable, because the input cell name will change.
Sheets.Add After:=ActiveSheet
ActiveSheet.Select
ActiveSheet.Name = Sheets("TI Summary").Range("B4")
Sheets("TI TEMPLATE PAGE").Select
Cells.Select
Selection.Copy
Sheets("7525").Select
Range("A1").Select
ActiveSheet.Paste
Range("B3").Select
Application.CutCopyMode = False
ActiveCell.FormulaR1C1 = "='TI Summary'!R[1]C"
Range("C3").Select
ActiveCell.FormulaR1C1 = "='TI Summary'!R[1]C"
Range("D3").Select
ActiveCell.FormulaR1C1 = "='TI Summary'!R[1]C"
Range("D4").Select
Sheets("TI Summary").Select