P
Patrick C. Simonds
The user inputs a year Value to TextBox1. How can I amend the code below so
that January 1 of the year is inputted to into the cell?
Private Sub CommandButton1_Click()
Dim rng
Set rng = Cells(ActiveCell.Row, 1)
rng(1, 2).Value = TextBox1.Value
Module2.Rename_Worksheets
Unload Year
End Sub
that January 1 of the year is inputted to into the cell?
Private Sub CommandButton1_Click()
Dim rng
Set rng = Cells(ActiveCell.Row, 1)
rng(1, 2).Value = TextBox1.Value
Module2.Rename_Worksheets
Unload Year
End Sub