John Bustos pointed to the right idea, here is a working solution:
Public Sub Demo()
Dim rngRow As Range
For Each rngRow In UsedRange.Rows
rngRow.Cells(1, 3).GoalSeek Goal:=1.7, ChangingCell:=rngRow.Cells(1, 2)
Next rngRow
End Sub
Edit:
Use ActiveSheet.UsedRange.Rows instead of UsedRange.Rows, if you intend to use this as a Macro in a Modul, not as one of a Worksheet - or any other reference to a valid Range.
For your example, you might prefer to use: Range("A2:C5028").Rows or MySheet.Range("A2:C5028").Rows.
Edit:
Public Sub Demo()
On Error Resume Next
Dim rngRow As Range
For Each rngRow In ActiveSheet.UsedRange.Rows
rngRow.Cells(1, 3).GoalSeek Goal:=1.7, ChangingCell:=rngRow.Cells(1, 2)
Next rngRow
End Sub