Folks:
My code in progress but is there a better way to force the user to input the correct month?:
Sub INPUT_NUMBER_FROM_1_THRU_12()
Dim myNum As Long
myNum = Application.InputBox("Enter Month # from 1-12", "CURRENT MONTH")
If myNum < 1 Or myNum > 12 Then
myNum =...