The answer has all ready been given - ActiveCell (A + 1, 5).Value. Your
loop statement is starting at zero, so even though you begin at row 1
the "a" variable is at 0. When your loop reaches 12 you are physically
at row 13, but the variable indicates 12. By adding one to the variable
you will be in the correct row.