leeandoona
New Member
- Joined
- Oct 13, 2016
- Messages
- 45
I'm running a bulk Goal Seek/Set using the following code over 10,000 rows. It works great but it takes about a day to run the macro! Is there any advice on how I can make it work Faster?
Sub LOWEST_BULK_GOAL_SET()
Dim iRow As Long
For iRow = 2 To 10001
Cells(iRow, "N").GoalSeek Goal:=0.05, ChangingCell:=Cells(iRow, "F")
Next iRow
End Sub
Sub LOWEST_BULK_GOAL_SET()
Dim iRow As Long
For iRow = 2 To 10001
Cells(iRow, "N").GoalSeek Goal:=0.05, ChangingCell:=Cells(iRow, "F")
Next iRow
End Sub