...maybe with a For loop that would not require repetitive statements with only two unique values that change [i.e., the Case is column number and the date]
Thanks for anyone's help.
cr
Code:
Dim d1 As Date
colnum = Round((Date - DateValue("11/16/2016")) / 7, 0)
Select Case colnum
Case Is = 44
d1 = DateValue("9/17/2017")
Case Is = 45
d1 = DateValue("9/24/2017")
Case Is = 46
d1 = DateValue("10/1/2017")
Case Is = 47
d1 = DateValue("10/8/2017")
Case Is = 48
d1 = DateValue("10/15/2017")
Case Is = 49
End Select
Thanks for anyone's help.
cr