Resolved Question: VBA for Excel Compile error For without Next?

I am trying to add Vlookup formulas to cells using a For Next loop to increment the lookup cell but I keep getting the message Compile Error: For without Next.

Here is the code:
AKAddress = Workbooks("OtherFile").Worksheets("SHEET").Cells.Find(What:="AK", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Address

Endcell = Range(AKAddress).Offset(52, 15).Address

For DestinationRow = 19 To 24
Workbooks("CurrentWorkbook.xls").Worksheets("NewSheet").Range("$B" & DestinationRow).Formula = "=VLOOKUP($A" & DestinationRow & ",'[PATHTOSHEET]" & Range(AKAddress, Endcell).Address & ",2,FALSE)"
'''' Essentially this sets the cell Matches A19 in NewSheet to the determined range in SHEET and populates B19 with the corresponding value from column2 in SHEET''''''

Next DestinationRow

I know the formula entry works when its not in a For Next Loop. Any thoughts why the loop isnt working?