Little help on this loop will be greatly appreciated.

Sub Get_Values()

Dim Code As Variant
Dim Rows As Variant
Dim Counter As Variant

Sheets("Summary").Select
Range("B2").Activate
Code = ActiveCell

Sheets("Summary").Select
Range("B69").Activate
Rows = ActiveCell

Counter = 1

Do
Do While Counter < Rows
Counter = Counter + 1
If Counter < Rows Then GoTo Option1 Else GoTo Option2
Exit Do

Option1:
ActiveCell.Formula = "='" & Code & "'!G43"


Option2:
Loop
Loop Until Counter = Rows

End Sub