Hi
Try something like this.
Sub aaa()
For i = 7 To 200000
Cells(i, "F").Value = Evaluate("=IF(ISERROR(V" & i & "/SUMPRODUCT(($J$7:$J$200000=J" & i & ")*($E$7:$E$200000=E" & i & ")*($V$7:$V$200000>0))),0,V" & i & "/SUMPRODUCT(($J$7:$J$200000=J" & i & ")*($E$7:$E$200000=E" & i & ")*($V$7:$V$200000>0)))")
Next i
End Sub
You will have to update the part
to nominate which column contains your formula.
One you are comfortable that it is working properly, you could turn off the screen updating, perhaps add a statusbar message so you know your status, and if there is anything that depends on this formula then turn off the calculation until it is all done, then turn it on again.
rylo
Bookmarks