I am having a problem I can't figure out. I have every day in a date format in Column B which I'm wanting to ONLY search for the current month and grab the values in Column F and add them, giving me a monthly total. I have this loop which only works if the 1st row is this current month. I can't see to figure this out? Any suggestions? Thanks!
c = Month(Date)
For Each c In DateRng
j = Range("F" & k).Offset(i, 0)
i = i + 1
sum = sum + j
Debug.Print sum
If Month(c) <> Month(Date) Then Exit For
Next c
c = Month(Date)
For Each c In DateRng
j = Range("F" & k).Offset(i, 0)
i = i + 1
sum = sum + j
Debug.Print sum
If Month(c) <> Month(Date) Then Exit For
Next c