Here is is JkBox. I appreciate your your time on this.
Code
Sub Goal_Seek_Start_Element()
Dim i As Integer, Last As Integer
i = 7 'starting row
N = 2
Last = Range("C2") + i
Application.ScreenUpdating = False
Do While i <= Last - 1
'Starting Guess
Range("D" & i) = Range("AA" & i)
Range("E" & i).GoalSeek Goal:=0, ChangingCell:=Range("D" & i)
IterationCount = i - 6
If IterationCount Mod N = 0 Then
DoEvents
Application.ScreenUpdating = True
Else
End If
Application.ScreenUpdating = False
i = i + 1
Loop
Application.ScreenUpdating = True
End Sub
Display More